From 05095e93da43a0459e42beefc1cf2390f1128ebf Mon Sep 17 00:00:00 2001 From: alex Date: Tue, 8 Sep 2026 03:06:43 -0400 Subject: [PATCH] lane R: golden-trace recapture with guards on the live game Five hooks recaptured, build recap-7584bad-20260908T0615Z, no source change. - ProcessResearch: the over-budget event is now a compare divergence (side.events.after.v.next_id orig=4 ours=3) instead of a 609 KB save diff. 15 calls over 5 turns, 3 diverged, RNG matched 15/15. - ComputeBudget: 4284 compared, 0 diverged, guard quiet - but only 20 distinct states and 13 of 22 slots always zero. - MoveFleet: 8 of 45 calls diverge by 1 ULP of position. B4's clean verdict was a one-sample verdict. - First guarded captures for OnTechResearched (RollResearchEvent draw fired and matched), the colony turn and MoveFleet. - Guards mapped SetResearched live and found an undeclared ObservedTech append. VM140 released at the main menu, hooks=trace. --- campaign/board.md | 20 +- findings/subsystems/golden-trace-recapture.md | 291 +++++ verify/results/compare/recap-b1-compare.json | 470 +++++++ verify/results/compare/recap-b1-compare.md | 21 + .../compare/recap-b3-compare-t1-5.json | 1088 +++++++++++++++++ .../results/compare/recap-b3-compare-t1-5.md | 47 + .../results/compare/recap-b3-compare-t1.json | 772 ++++++++++++ verify/results/compare/recap-b3-compare-t1.md | 26 + .../results/compare/recap-golden-trace.json | 964 +++++++++++++++ verify/results/compare/recap-golden-trace.md | 51 + .../results/compare/recap-misc-compare.json | 759 ++++++++++++ verify/results/compare/recap-misc-compare.md | 57 + verify/results/shim/recap-b1-shim.log | 39 + verify/results/shim/recap-b3-shim.log | 39 + verify/results/shim/recap-misc-shim.log | 43 + verify/results/shim/recap-misc-turn7.png | Bin 0 -> 170516 bytes verify/results/shim/recap-trace-shim.log | 43 + verify/results/shim/recap-turn2-loaded.png | Bin 0 -> 166954 bytes verify/traces/recap-b1-compare.jsonl.gz | Bin 0 -> 212499 bytes verify/traces/recap-b3-compare.jsonl | 16 + verify/traces/recap-golden-trace.jsonl.gz | Bin 0 -> 159900 bytes verify/traces/recap-misc-compare.jsonl | 188 +++ 22 files changed, 4926 insertions(+), 8 deletions(-) create mode 100644 findings/subsystems/golden-trace-recapture.md create mode 100644 verify/results/compare/recap-b1-compare.json create mode 100644 verify/results/compare/recap-b1-compare.md create mode 100644 verify/results/compare/recap-b3-compare-t1-5.json create mode 100644 verify/results/compare/recap-b3-compare-t1-5.md create mode 100644 verify/results/compare/recap-b3-compare-t1.json create mode 100644 verify/results/compare/recap-b3-compare-t1.md create mode 100644 verify/results/compare/recap-golden-trace.json create mode 100644 verify/results/compare/recap-golden-trace.md create mode 100644 verify/results/compare/recap-misc-compare.json create mode 100644 verify/results/compare/recap-misc-compare.md create mode 100644 verify/results/shim/recap-b1-shim.log create mode 100644 verify/results/shim/recap-b3-shim.log create mode 100644 verify/results/shim/recap-misc-shim.log create mode 100644 verify/results/shim/recap-misc-turn7.png create mode 100644 verify/results/shim/recap-trace-shim.log create mode 100644 verify/results/shim/recap-turn2-loaded.png create mode 100644 verify/traces/recap-b1-compare.jsonl.gz create mode 100644 verify/traces/recap-b3-compare.jsonl create mode 100644 verify/traces/recap-golden-trace.jsonl.gz create mode 100644 verify/traces/recap-misc-compare.jsonl diff --git a/campaign/board.md b/campaign/board.md index 4bb8359..4170e58 100644 --- a/campaign/board.md +++ b/campaign/board.md @@ -53,20 +53,24 @@ Status flow: `backlog → in-progress → mapped → verified` (or `blocked`). | tech effects (code-defined) | subsystem | mapped | high | 90% | 2026-09-07 | findings/subsystems/tech-effects.md: g_TechIdNames 196 @0x009ff9e4 (TechId=10000+i), effects in ServerPlayer::OnTechResearched 0x00891790; SpeciesDef table 0x00b10a00; 36 strategic / ~45 gates / ~115 none. Feeds game/sim + game/data | | strategic formula gaps | subsystem | verified | high | 100% | 2026-09-07 | findings/subsystems/formula-gaps.md: all 8 answered with code (bankruptcy 3.3 on BnkPr, linear hazard, money tail, pbon, slider, [6] net, no speed clamp, decay hits current) | | engine: game/design | engine | verified | high | 100% | 2026-09-07 | merged; see ShipDesignDef row | -| P2-B1 ComputeBudget (behavioral) | phase2 | verified | med | 75% | 2026-09-08 | LIVE + GREEN on declared regions (4,437 compares, 0 divergences; replace-mode oracle byte-identical). Corrections: out-param int[22]; researchMoneyKept gated on a research target. QUALIFIED BY THE HARNESS AUDIT: replace mode runs the ORIGINAL A SECOND TIME to harvest slots -> a real per-turn double effect (ComputeOutput repairs ships in orbit) that no region reaches - UNRESOLVED; the over-budget int at Budget+0x64 was captured only as an argument and args are never compared. Golden trace needs recapture with guards. Coverage gaps: 8 slots always 0 (expenses/aid/debt) | -| P2-B2 OnTechResearched (behavioral) | phase2 | verified | high | 80% | 2026-09-08 | LIVE: 3 completions compared, 0 divergences (incl. one tech absent from the effects table = tail-only, the case an early return would have broken). float32 CONFIRMED ON THE GAME bit-for-bit (con_mod 1.0->0.899999976 = (float)(x+(double)0.1f)). Found B3's rolling effect: ServerPlayer::RollResearchEvent draws one NextFloat at the top of the callback - modelled + RNG region declared, but the branch never fired here so NOT behaviourally proven. KNOWN GAP: ours posts no events and the player event list is still undeclared, so the clean compare bounds the economy fields only and the replace/oracle pass was deliberately run on a no-completion turn (weak check) | -| P2-B3 ProcessResearch (behavioral, RNG) | phase2 | mapped | high | 85% | 2026-09-08 | LIVE, PARTIAL PASS: 15 calls compared, 13 zero-divergence; RNG post-state matched 14/15 incl. every roll (validates MT19937 + draw mapping + odds together). 2 divergences are the declared SetResearched boundary. ORACLE FAILS by exactly one item across 40,300: an unposted EVENT_RESEARCH_OVERBUDGET - compare was blind because the event list was never a declared region. fpu_cw=0x127f => 53-bit double, x87 question SETTLED. No Zuul in the save: double roll still disassembly-only | +| P2-B1 ComputeBudget (behavioral) | phase2 | verified | med | 75% | 2026-09-08 | LIVE + GREEN on declared regions (4,437 compares, 0 divergences; replace-mode oracle byte-identical). Corrections: out-param int[22]; researchMoneyKept gated on a research target. QUALIFIED BY THE HARNESS AUDIT: replace mode runs the ORIGINAL A SECOND TIME to harvest slots -> a real per-turn double effect (ComputeOutput repairs ships in orbit) that no region reaches - UNRESOLVED; the over-budget int at Budget+0x64 was captured only as an argument and args are never compared. Golden trace needs recapture with guards. Coverage gaps: 8 slots always 0 (expenses/aid/debt) . RECAPTURED WITH GUARDS 2026-09-08 (lane R): 4284 compared, 0 diverged, exit 0; `budget_object` guard 0 undeclared writes, so Budget+0x64 never took a different value (weaker than 'never written'). COVERAGE IS NARROWER THAN THE NUMBER: only **20 distinct (player, output) states** in 4284 calls (4278 are the UI polling one player; the turn pass is ~8 calls), and **13 of the 22 slots are 0 on EVERY call** - including 5 of the 6 declared input-boundary slots, which therefore prove nothing twice over. 8 modelled slots ever carry a value | +| P2-B2 OnTechResearched (behavioral) | phase2 | verified | high | 80% | 2026-09-08 | LIVE: 3 completions compared, 0 divergences (incl. one tech absent from the effects table = tail-only, the case an early return would have broken). float32 CONFIRMED ON THE GAME bit-for-bit (con_mod 1.0->0.899999976 = (float)(x+(double)0.1f)). Found B3's rolling effect: ServerPlayer::RollResearchEvent draws one NextFloat at the top of the callback - modelled + RNG region declared, but the branch never fired here so NOT behaviourally proven. KNOWN GAP: ours posts no events and the player event list is still undeclared, so the clean compare bounds the economy fields only and the replace/oracle pass was deliberately run on a no-completion turn (weak check) . RECAPTURED WITH GUARDS 2026-09-08 (lane R): 2 calls, 0 divergences; the `player` guard reports **player+0x2b0 (EvNxID) on BOTH calls**, so 'ours posts no events' is now measured, not assumed. **RollResearchEvent branch FIRED and matched** (see its row). Also caught an undeclared `vector` append at player+0x274. Reachable only after 5 End Turns from ref-turn2 | +| P2-B3 ProcessResearch (behavioral, RNG) | phase2 | mapped | high | 85% | 2026-09-08 | LIVE, PARTIAL PASS: 15 calls compared, 13 zero-divergence; RNG post-state matched 14/15 incl. every roll (validates MT19937 + draw mapping + odds together). 2 divergences are the declared SetResearched boundary. ORACLE FAILS by exactly one item across 40,300: an unposted EVENT_RESEARCH_OVERBUDGET - compare was blind because the event list was never a declared region. fpu_cw=0x127f => 53-bit double, x87 question SETTLED. No Zuul in the save: double roll still disassembly-only . RECAPTURED WITH GUARDS 2026-09-08 (lane R): the oracle gap is now a COMPARE DIVERGENCE - `side.events.after.v.next_id orig=4 ours=3` on call 0, its only divergent field, with node[144] progress 2879->5768 and flag 1->2 both reproduced and the single RNG draw identical. 15 calls over 5 turns: 3 diverged, **RNG 15/15** (better than the original 14/15 - no tech-effect draw in this session). Guards on the two completion calls map SetResearched: ConMod[0..2]/OutMod/PopMod, ResTNm, TechTree+0x20 order counter, and the undeclared otch vector | | RNG signatures (Ghidra) | meta | verified | high | 100% | 2026-09-08 | Seed/Twist/NextFloat/NextInt verified; draw = y/(2^32-1); NextInt [0,n] inclusive; lazy twist; left@+0x9c4. RUNTIME CONFIRMED: fpu_cw=0x127f (53-bit double, round-nearest) - our next_float model is right, float_from_pc24 is an unused contingency | | engine: game/effects | engine | verified | high | 100% | 2026-09-08 | merged: TechId enum (196 slots @10000+i), 44 ids with typed strategic effects, species flag bits, ApplyTechEffect; 254 checks | -| VM140 exclusivity (lab rule) | meta | verified | high | 100% | 2026-09-08 | one agent at a time. Holder: R-recapture (window open 2026-09-08). QUEUE: empty. Windows Update now DISABLED/paused on the VM (was rebooting mid-run). Non-holders build /srv/re-lab/build/sots-engine-, stage dist-, deploy C:\SOTS\shimdist- | +| VM140 exclusivity (lab rule) | meta | verified | high | 100% | 2026-09-08 | one agent at a time. Holder: **FREE** (R-recapture released 2026-09-08 03:00 local). QUEUE: empty. VM left at the MAIN MENU, `hooks=trace`, build `recap-7584bad-20260908T0615Z` deployed from `C:\SOTS\shimdist-recap` (that dist also carries `shim.cfg.recap{trace,b3,b1,misc}`). Windows Update DISABLED/paused on the VM. Non-holders build /srv/re-lab/build/sots-engine-, stage dist-, deploy C:\SOTS\shimdist-. GOTCHA found this window: after `schtasks /Run /TN SOTS` the main menu can take >60 s - SCREENSHOT AND VERIFY before clicking, or the click path lands in Credits | | Zuul double-roll (behavioural) | verify | backlog | — | 0% | 2026-09-08 | CONFIRMED NEEDED: ref-turn2 has only species 0 and 2, so the double roll is verified by disassembly + host tests only. Needs one compare from a species-5 save; the check is just that `left` drops by 2 not 1 | -| budget tail coverage (expenses/aid/debt) | verify | backlog | — | 0% | 2026-09-08 | 8 ComputeBudget slots were always 0 in ref-turn2 (no sliders, no aid, no debt, no handicap). Need a save with expense sliders, a debtor and a research-aid treaty to exercise ExpenseTotal + the aid/bonus tail | +| budget tail coverage (expenses/aid/debt) | verify | backlog | — | 0% | 2026-09-08 | 8 ComputeBudget slots were always 0 in ref-turn2 (no sliders, no aid, no debt, no handicap). Need a save with expense sliders, a debtor and a research-aid treaty to exercise ExpenseTotal + the aid/bonus tail . CONFIRMED AND WORSE 2026-09-08 (lane R, 4284 calls): **13 of 22 slots are 0 on every call** - tradeIncome, shipCarriedPop, secondaryManager, bonusIncome, systemIncomeNeg, debtInterest, construction, expenses, researchMoneyGiven, savingsGiven, tra, researchPointsGiven, trp | | hook GetDifficultyMods | meta | backlog | — | 0% | 2026-09-08 | B1 derived the two difficulty rows from trace values (AI maintenance divisor 3, research x1.5) instead of snapshotting them; hook it properly so they stop being constants | | section-loader compare crash | verify | backlog | — | 0% | 2026-09-08 | SectionDictionary compare crashes the engine while the identical weapon path succeeds -> fault is in re-running LoadSection, not the manifest reader. Next boundary: hook LoadSection itself. docs/M2.md has 3 ranked leads | -| P2-B4 colony + movement (behavioral) | phase2 | verified | high | 100% | 2026-09-08 | LIVE: 36 calls compared, 0 divergences, tracecmp exit 0. Scout's headline: RNG left-delta 0 and mt hash identical on ALL 28 systems (only ProcessRebellion draws; none fired) - fpu_cw 0x127f confirmed. One real fleet move reproduced bit-for-bit; PlanFleetMovement's schedule matched. 3 prototypes + 6 helpers VERIFIED and written back to Ghidra; 22 formula corrections. THREE hook bugs found by reading the trace, not the verdict (stale args from describe_args-before-regions; StrategyServer has TWO bases 4 bytes apart; off_Fleets was a Ghidra-base number used as raw) - each would have given a clean compare that checked nothing. COVERAGE IS THIN: only 3 owned systems, 1 moving fleet, gate traffic all-zero; bats2, plague, rebellion, slaves, terraform, jumps, arrivals untested. No replace mode (input boundary). VM released: main menu, hooks=trace, build b4-fix2-20260908T0615Z | +| P2-B4 colony + movement (behavioral) | phase2 | mapped | med | 70% | 2026-09-08 | LIVE: 36 calls compared, 0 divergences, tracecmp exit 0. Scout's headline: RNG left-delta 0 and mt hash identical on ALL 28 systems (only ProcessRebellion draws; none fired) - fpu_cw 0x127f confirmed. One real fleet move reproduced bit-for-bit; PlanFleetMovement's schedule matched. 3 prototypes + 6 helpers VERIFIED and written back to Ghidra; 22 formula corrections. THREE hook bugs found by reading the trace, not the verdict (stale args from describe_args-before-regions; StrategyServer has TWO bases 4 bytes apart; off_Fleets was a Ghidra-base number used as raw) - each would have given a clean compare that checked nothing. COVERAGE IS THIN: only 3 owned systems, 1 moving fleet, gate traffic all-zero; bats2, plague, rebellion, slaves, terraform, jumps, arrivals untested. No replace mode (input boundary). VM released: main menu, hooks=trace, build b4-fix2-20260908T0615Z . **QUALIFIED 2026-09-08 by lane R:** with 45 MoveFleet calls over 5 turns instead of 7 over 1, **8 of the 15 moving calls diverge by 1 ULP of position**. B4's clean verdict was a ONE-SAMPLE verdict - fleet 34 (its only mover) still matches bit-for-bit; the bug appears once other fleets move. ProcessTurn recaptured at 140 calls / 0 divergences, but only `ntdev` (15x) and `rcex` (7x) ever moved: everything else was byte-identical on all 140, so the verdict bounds two counters. Guard found the AI home system's fleet vector growing every turn (the build queue emitting a ship) | | harness gap: undeclared side-effect lists | verify | verified | high | 100% | 2026-09-08 | FIXED STRUCTURALLY (engine 3f0721f+): compile-time-required Coverage on every descriptor (a hook without one does not compile); Guard regions that catch AND localise undeclared writes (names player+0x2b0, not 'the hash moved'); replace mode now emits records; tracecmp prints coverage on every report + --strict-coverage. A hook claiming 'complete' while a guard caught an undeclared write now counts as a DIVERGENCE. Audit found 23 undeclared side effects: docs/harness-audit.md | -| RollResearchEvent draw (behavioural) | verify | backlog | — | 0% | 2026-09-08 | ServerPlayer::RollResearchEvent draws one NextFloat when the completing def is the current target and +0x3b4 is set. Region declared, ours reproduces it, but the branch never fired on ref-turn2 - needs a workload that sets research_roll_pending | -| golden-trace recapture (post-guards) | verify | in-progress | — | 0% | 2026-09-08 | region sets changed, so goldens must be recaptured: ProcessResearch (expect NEW divergences - the event defect becoming visible), ComputeBudget (verdict should stay 0), and first captures for OnTechResearched / ServerSystem::ProcessTurn / MoveFleet | +| RollResearchEvent draw (behavioural) | verify | verified | high | 100% | 2026-09-08 | **CLOSED by lane R.** On turn 6 (`IND_TRKSTL`, tech 10094) `research_roll_pending` was true going in; the original drew exactly one word (rng `left` 375->374, `next_index` 249->250) and cleared the flag, and `ours` reproduced both bit-for-bit on the scratch generator. 0 divergences on that call. Needs 5 End Turns from ref-turn2 to reach - the reference turn has no completion at all | +| golden-trace recapture (post-guards) | verify | verified | high | 100% | 2026-09-08 | DONE on the live game, build `recap-7584bad-20260908T0615Z` (NO source change needed - the audit's machinery did all of it). **B3 ProcessResearch: the defect is VISIBLE** - `side.events.after.v.next_id orig=4 ours=3`, one divergent call of 3 on the reference turn and its ONLY divergent field; bit-for-bit the `EvNxID 4->3` that previously needed a 609 KB save diff. Over 5 turns 15 calls / 3 diverged, **RNG matched 15/15**, and the two completion calls miss TWO event ids each. **B1 ComputeBudget: verdict held** - 4284 compared, 0 diverged, exit 0, `budget_object` guard caught 0 undeclared writes (Budget+0x64 never changed value). **MoveFleet: 8 of 45 diverge by 1 ULP of position** (new; see its own row). First guarded captures for OnTechResearched (2 calls), ServerSystem::ProcessTurn (140 calls) and MoveFleet (45). Guards mapped SetResearched live (ConMod[0..2], OutMod, PopMod, ResTNm, TechTree+0x20 order counter) and found an UNDECLARED `vector otch` append at player+0x274. Oracle held on every run's first End Turn. Report `findings/subsystems/golden-trace-recapture.md`; engine `docs/R-recapture.md`; traces `verify/traces/recap-*`, reports `verify/results/compare/recap-*`. sots-engine branch `wip/recapture` e50d5e5 (merged with main 82ef52f; ctest 32/32, clean-room OK) | +| MoveFleet position rounding (1 ULP) | verify | backlog | — | 0% | 2026-09-08 | NEW (lane R). 8 of 45 `StrategyServer::MoveFleet` compares diverge on one position component by 1 ULP (worst 64 ULP at a near-zero result, but the ABSOLUTE error is ~1.2e-7 in every case = half an ULP of the INPUTS, not of the result). Step length right, every ship-range region matches, x/y/z each diverge on some call -> one rounding too many or too few in the position update (`sim::AdvanceAlongDirection` narrowing to float32 where the original keeps the x87 53-bit double, or the reverse). Needs pinning against the instruction stream. Evidence: `verify/traces/recap-misc-compare.jsonl` calls 42/79/80/116/118/154/156/157 | +| undeclared ObservedTech append | verify | backlog | — | 0% | 2026-09-08 | NEW (lane R). A tech completion grows `vector otch` at ServerPlayer+0x274 (all three vector words move = a realloc). Seen as an undeclared write by BOTH the ProcessResearch `player` guard and the OnTechResearched `player` guard. It is serialized ServerPlayer state and it is in NO coverage note anywhere - a third list append in the same neighbourhood as the event list. B3's replace oracle never saw it because turn 1 of ref-turn2 has no completion | +| unnamed offsets from guard hits | verify | backlog | — | 0% | 2026-09-08 | NEW (lane R). Three spans the guards report every run and no addresses.json entry names: **ServerSystem+0xd8 (1 B)** and **ServerSystem+0x238 (4 B)** - written by the AI home system on every colony turn, alongside the fleet-vector growth; **StarFleet+0xdc (1 B)** - written on every moving MoveFleet call, just past Speed (FPsp2 @0xd8). Cheap wins for the contract | +| ref-turn2 has no tech completion | meta | verified | high | 100% | 2026-09-08 | TRAP for anyone writing a workload (lane R). The documented one-End-Turn recipe produces **zero** `OnTechResearched` calls - an empty log that still passes. It takes 5 End Turns (to turn 7) to reach a completion. Also: only the FIRST End Turn is reproducible - it hashed to the oracle on all four runs and its research calls reproduce docs/B3.md exactly, but from turn 4 the AI picks a different research target than B3 recorded while the point totals stay nearly identical. Treat anything past turn 1 as *a* run, not *the* run | | B1 replace double-run | verify | backlog | — | 0% | 2026-09-08 | ComputeBudget replace mode runs the original a second time to harvest budget slots; ComputeOutput repairs ships in orbit as a side effect, so this is a real per-turn double effect on objects no region covers. Needs a design fix (harvest without re-running, or declare+revert) | | ReVa MCP link drop (workaround) | meta | verified | high | 100% | 2026-09-08 | The ReVa MCP client link dropped mid-session while the CT111 server stayed healthy (systemd active, :8080 listening, valid key -> 200). `tools/reva_call.py ''` calls the same server over plain HTTP (initialize -> notifications/initialized -> tools/call; replies are SSE with a leading `id:` line, initialize is plain JSON). Key is NEVER stored in the repo: $REVA_KEY, else ~/.claude.json, else ssh to the CT properties file. Use this whenever mcp__plugin_ReVa_ReVa__* is unavailable | | event posting API | subsystem | mapped | high | 90% | 2026-09-08 | RECOVERED (lane E, `findings/subsystems/events.md`). Container: `EventStorage` embedded at `ServerPlayer+0x29c` (0x1c), `EvNxID` at +0x14 = player+0x2b0 — exactly the guard's byte run. Nested `vector}>`, record 0x74 B, tags `EvEID EvDsc EvMsg EvImg EvLoc EvPos EvAct EvCID`; layout confirmed field-by-field against turn3-state.sav, which CONTAINS the overbudget record. Entry point `int __thiscall EventStorage::PostEvent(this, string BYVAL, string BYVAL, obj*, Vector3*, turn, const char* img, int act)` 0x008862b0 RET 0x4c — **161 call sites in 113 functions, the whole sim's event API**. B3 defect fully explained: 0x00587b97, in the completion-roll-FAILED branch under `!wasDone && nowDone && owner`. 3 note corrections (EvPos is FLT_MAX not inf; the save array is turn-bucketed not flat; TECHS_UNLOCKED has no parent clause). 56 entries in addresses.json; 11 prototypes + 13 labels + 12 comments + 2 structs written back to Ghidra. Engine: `sots-engine` branch `wip/events` a7348be, `src/game/events` + 112 checks, ctest 32/32. NOT YET WIRED INTO A HOOK — see `docs/E-events.md` for the proposed region/Coverage change | diff --git a/findings/subsystems/golden-trace-recapture.md b/findings/subsystems/golden-trace-recapture.md new file mode 100644 index 0000000..39a4057 --- /dev/null +++ b/findings/subsystems/golden-trace-recapture.md @@ -0,0 +1,291 @@ +# Golden-trace recapture with guards (lane R, 2026-09-08) + +Every golden trace went stale when the harness grew `Coverage` + guard regions +(`sots-engine` 3f0721f+, `docs/harness-audit.md`). This is the recapture on the live game. +**Read the coverage, not the verdict.** Two of the five hooks now report divergences that +their previous "verified" rows did not, and both are real. + +* Build: `recap-7584bad-20260908T0615Z` (sots-engine `7584bad` + four `shim.cfg.recap*` + variants; no source change). Staged `C:\SOTS\shimdist-recap`, VM140. +* Workload: `ref-turn2.sav` → Launch → **End Turn**. The B3/misc runs continue to turn 7 + (5 End Turns) to reach a research completion, which turn 1 does not contain. +* Oracle held on every run's first End Turn: `(Autosave EndTurn).sav` = `bb4fd9ac89f41e3b…`, + `(Autosave).sav` = `978041acd168b56e…` — trace and compare mode do not perturb the game. +* Artefacts: `verify/traces/recap-*.jsonl[.gz]`, reports in `verify/results/compare/recap-*`, + shim logs + screenshots in `verify/results/shim/recap-*`. + +## 1. Headline table (coverage first) + +| hook | run | calls | compared | diverged | exit | coverage line | +|---|---|---|---|---|---|---| +| `TechTree::ProcessResearch` | `recap-b3-compare` (t2→t7) | 15 | 15 | **3** | **1** | 15 guarded calls, **13 undeclared writes in 2 calls**, 0 unstated, 0 contradicted | +| `TechTree::ProcessResearch` | first End Turn only | 3 | 3 | **1** | **1** | 3 guarded calls, 0 undeclared writes | +| `ServerPlayer::ComputeBudget` | `recap-b1-compare` | 4284 | 4284 | 0 | 0 | 4284 guarded calls, **0 undeclared writes** | +| `ServerPlayer::OnTechResearched` | `recap-misc-compare` | 2 | 2 | 0 | (1)¹ | 2 guarded calls, **6 undeclared writes in 2 calls** | +| `ServerSystem::ProcessTurn` | `recap-misc-compare` | 140 | 140 | 0 | (1)¹ | 140 guarded calls, **15 undeclared writes in 6 calls** | +| `StrategyServer::MoveFleet` | `recap-misc-compare` | 45 | 45 | **8** | (1)¹ | 45 guarded calls, **42 undeclared writes in 15 calls** | +| all five | `recap-golden-trace` (trace mode) | 3630 | — | — | 0 | 3630 guarded calls, 9 undeclared writes in 4 calls | + +¹ the three misc hooks share one log; its exit code 1 comes from `MoveFleet` alone. + +## 2. `TechTree::ProcessResearch` — the over-budget event is now visible + +**Yes. The defect became a divergence, on exactly the call the audit predicted.** + +On the first End Turn, one call of three diverges, and in exactly one field: + +``` +### Game::TechTree::ProcessResearch: first 1 of 1 divergent call(s) +- call_id 0 (recap-b3-compare.jsonl:2) + side.events.after.v.next_id [exact] orig={"t":"i32","v":4} ours={"t":"i32","v":3} +``` + +That is bit-for-bit the same signal B3's save-file oracle produced (`docs/B3.md`: +`EvNxID 4 → 3`, one `EVENT_RESEARCH_OVERBUDGET` missing across 40,300 items). The 609 KB +save diff has been replaced by one line in the compare report. + +Corroboration that this is the right branch (lane E: the post site is 0x00587b97, reachable +only from the completion-roll-**failed** path, gated `!wasDone && nowDone && owner`, and it +sets `node->flag = 2` in the same branch): + +| region | before | after (orig) | after (ours) | +|---|---|---|---| +| `node[144].progress` | 2879 | 5768 | 5768 ✓ | +| `node[144].flag` | 1 | **2** | **2** ✓ | +| `events.next_id` (= `ServerPlayer+0x2b0`, `EvNxID`) | 3 | **4** | **3** ✗ | +| `rng` (`left` 432→431, `mt[624]` hash, `next_index` 192→193) | | | identical ✓ | +| `overbudget` (the caller's `int*`) | 0 | 0 | 0 ✓ | + +So the node arithmetic, the flag and the single RNG draw are all reproduced; the *only* +thing missing is the event. Alloc for that call was `{tech 144 (IND_Waldo), 2889 points}`, +species 2 — B3's call 0 exactly. + +### Across five turns: 15 calls, 3 divergent + +| call | alloc | draws | events `next_id` orig → ours | guard hits | +|---|---|---|---|---| +| 0 | {144, 2889} | 1 | **4 → 3** | none | +| 1, 2 | {90,0}, {9,0} | 0 | 0 → 0 | none | +| **3** | {144, 2898} | 0 (ceiling ⇒ guaranteed) | **7 → 5** (two events) | 9 | +| 4, 5 | zero-spend | 0 | 0 → 0 | none | +| 6 | {9, 3064} | 1 (rolled, failed) | 8 → 8 | none | +| 7, 8 | zero-spend | 0 | 0 → 0 | none | +| **9** | {9, 3074} | 0 | **12 → 10** (two events) | 4 | +| 10, 11 | zero-spend | 0 | 0 → 0 | none | +| 12 | {18, 3087} | 1 (rolled, failed) | 14 → 14 | none | +| 13, 14 | zero-spend | 0 | 0 → 0 | none | + +* **RNG matched on 15 of 15** (`mt[624]` hash, `left` and `next_index` identical on every + call) — stronger than B3's 14/15, because in this session no tech-effect callback drew. +* Calls 3 and 9 are the completions. Their non-`events` divergences are exactly the + `SetResearched`-owned fields B3 declared out of scope (`cost_rp`/`state`/`turn_available` + on unlocked children; `ours` leaves them at `INT_MAX`/0/−1). Nothing new there. +* Note the dedup rule (lane E): a duplicate post inside a turn bucket returns the existing + id **without** advancing `EvNxID`, so `next_id` not moving is not proof nothing was posted. + Calls 6 and 12 rolled and failed *without* completing by cost, so no post is expected there. + +### What the guards mapped: `SetResearched`, measured + +This is the "cheapest map of what `SetResearched` actually touches" the audit asked for. +Undeclared byte runs inside `guard:player` / `guard:tree_header` on the two completion calls, +resolved against the recovered `ServerPlayer` table: + +| offset | len | field | call 3 | call 9 | +|---|---|---|---|---| +| `player+0x10c/0x110/0x114` | 3 each | `ConMod[0..2]` (construction cost per hull class) | ✓ | | +| `player+0x124` | 3 | `OutMod` (industrial output multiplier) | ✓ | | +| `player+0x130` | 3 | `PopMod` | | ✓ | +| `player+0x274 / 0x278 / 0x27c` | 3 each | **`vector otch`** — all three vector words move (a realloc) | ✓ | ✓ (+0x278 only, 1 byte) | +| `player+0x294` | 4 | `ResTNm` — the current research target pointer is cleared | ✓ | ✓ | +| `tree_header+0x20` | 1 | **the tree's completion-order counter** | ✓ | ✓ | + +Two things worth carrying forward: + +1. `tree_header+0x20` is harness-audit row 9, confirmed on the game: the per-node `order` + word is compared but the counter it is read from moves outside every Result region. +2. **`otch` (`vector`) grows on a tech completion, and no coverage note in + either B2 or B3 mentions it.** It is a third list append in the same neighbourhood as the + event list, and it *is* save state (`ServerPlayer` serializer). B3's replace-mode oracle + never saw it because turn 1 contains no completion. +3. The `player+0x10c…0x124` hits are precisely `OnTechResearched`'s own declared regions + (§4) — a clean cross-check that the guard is reporting the callee, not noise. + +## 3. `ServerPlayer::ComputeBudget` — verdict held, and the guard is quiet + +**4284 calls, 4284 compared, 0 divergences, `tracecmp` exit 0.** The `budget_object` guard +(Budget+0x00..0x68) caught **0 undeclared writes in 4284 calls**. In particular the +over-budget int at **`Budget+0x64`** (harness-audit row 11 — the word B1 captured only as an +argument, and arguments are never compared) **never changed value on any call**. That does +not prove the original never writes it, only that it never writes a *different* value here. + +Coverage, honestly: + +* **Only 20 distinct `(player, budget-output)` states exist across the 4284 calls.** 4278 of + the calls are the strategy-map UI polling the human player (one pointer accounts for 4115 + of them); the End-Turn pass itself is ~8 calls, one per player in server order. The + headline number is repetition, not evidence. +* **13 of the 22 named slots are 0 on every single call**: `tradeIncome`, `shipCarriedPop`, + `secondaryManager`, `bonusIncome`, `systemIncomeNeg`, `debtInterest`, `construction`, + `expenses`, `researchMoneyGiven`, `savingsGiven`, `tra`, `researchPointsGiven`, `trp`. + The board's "budget tail coverage" backlog row is confirmed, and it is worse than stated: + five of the six *input-boundary* slots (1,2,3,4,7,11 = `systemIncomePos`, `tradeIncome`, + `shipCarriedPop`, `secondaryManager`, `systemIncomeNeg`, `construction`) are also always + zero, so they prove nothing twice over. Only `systemIncomePos` carries a value. +* Nine slots ever moved: `savings`, `systemIncomePos` (input), `savingsInterest`, + `maintenance`, `researchMoneyKept`, `available`, `researchMoney`, `researchPoints`, + `totalResearchPoints`. **Eight of those are genuinely modelled.** That is the real width + of the B1 result. +* Cross-check with B3: the End-Turn call for the AI Tarkas player yields + `researchPoints = 2889`, which is exactly the allocation `ProcessResearch` received. +* The B1 replace-mode double-run defect was **not** exercised: this lane ran compare only. + +## 4. `ServerPlayer::OnTechResearched` — first guarded capture; the roll branch finally fired + +**2 calls, 2 compared, 0 divergences.** The workload had to run to turn 7; the reference +turn contains no completion at all, which is why B2 never captured this hook on it. + +| call | tech | branch reached | declared regions the original moved | +|---|---|---|---| +| 71 | 10001 `IND_Waldo`, node 144, `silent=false` | economy modifiers | `modifiers` (`con_mod[0..2]` 1.0 → 0.899999976), `research_target` (ptr → null) | +| 147 | 10094 `IND_TRKSTL`, node 142 | **design-option mask + the pending research roll** | `design_masks` (`b` 64 → 2097216), `research_target`, `roll`, **`rng`** | + +**The `RollResearchEvent` draw is now behaviourally verified** — the board's backlog row. +On call 147 `research_roll_pending` was `true` going in; the original drew exactly one word +(`left` 375 → 374, `next_index` 249 → 250) and cleared the flag, and `ours` reproduced both +on the scratch generator bit-for-bit. That closes "region declared, ours reproduces it, but +the branch never fired". + +Guard `player` (0x3e0 span) findings — **B2's known gap is now measured, not assumed**: + +| offset | len | field | calls | +|---|---|---|---| +| `player+0x2b0` | 1 | **`EvNxID`** (`EventStorage+0x14`, `EventStorage` embedded at `ServerPlayer+0x29c`) | both | +| `player+0x274/0x278/0x27c` | 3 | `vector otch` — the vector grew | 71 | +| `player+0x278` | 1 | same vector, end pointer only | 147 | + +So the completion events (`EVENT_RESEARCH_COMPLETE` / `_UNDERBUDGET` / `_TEMPERANCE`) are +confirmed to post on **every** completion, and `ours` posts none. The guard names the byte +rather than leaving it to a save hash that `docs/B2.md` gotcha 4 explicitly told readers to +ignore. + +Not exercised at all: `silent = true`, a Zuul boarding-pod grant, a plague cure, a +node-bore allocation, the temperance sweep, the arcology re-evaluation, or any of the +writes to other objects. **Two calls, two branches. This is a thin capture.** + +## 5. `ServerSystem::ProcessTurn` — first guarded capture + +**140 calls (28 systems × 5 turns), 140 compared, 0 divergences.** + +The coverage is the finding: + +* **Only two declared regions ever moved in 140 calls**: `ntdev` (15 times) and `rcex` + (7 times). `infra`, `ibon`, `pbon`, `tres`, `haltv`, `bats2`, `bats_mask`, `rcex_mask` + and `rng` were byte-identical before and after on **every one of the 140 calls**. A + 0-divergence verdict here means "two integer counters agreed and nothing else moved" — + it does not exercise the decay, the bonus applies, or the battle countdown. +* `rng` unchanged on all 140 confirms B4's headline over five turns: no colony drew a word, + i.e. no rebellion fired. `fpu_cw = 0x127f` on every call. +* Owners: 3 owned systems (`owner` 0, 1, 7) × 5 turns = 15 calls; the other 125 are unowned. + +Guard `system` (0x2d8 span) hits, 15 writes on 6 calls: + +| offset | len | plausible field | when | +|---|---|---|---| +| `system+0x1a4` | 12 | inside `Pop2` (civilian `Population`) at 0x1a0 — the population-group vector's three words | sys 4, 15, 16 on **turn 1 only** | +| `system+0x170` | 1 | inside `Fleets` (`vector` at 0x16c) — the end pointer | sys 15, every turn | +| `system+0xd8` | 1 | **unnamed in the contract** | sys 15, every turn | +| `system+0x238` | 4 | **unnamed in the contract** | sys 15, every turn | + +System 15 is the AI's home world and it emits one new fleet per turn (see §6: fleets 50, 66, +98, 114 appear one per turn) — so `system+0x170` is the build queue pushing the new fleet +into the system's fleet vector, harness-audit row 14 observed live. `+0xd8` and `+0x238` are +unidentified and worth an addresses.json entry. + +**The morale-event append (audit row 3) never fired** — no addiction on this save — so that +risk is still unmeasured, not cleared. + +## 6. `StrategyServer::MoveFleet` — 8 of 45 diverge; B4's clean verdict was a one-sample verdict + +**45 calls, 45 compared, 8 divergent, `tracecmp` exit 1.** Every divergence is a 1-ULP +position component. + +``` +- call_id 42 side.pos.after.v.y [exact] orig=3.1515913 ours=3.15159106 +- call_id 79 side.pos.after.v.y [exact] orig=1.58417809 ours=1.58417821 +- call_id 116 side.pos.after.v.y [exact] orig=0.0167649984 ours=0.0167651176 +``` + +Structure of the run: 30 of the 45 calls are the six waypointless fleets +(`wpt_type = -1`, early-out, no guard hit). **15 calls do real work and every one of them is +`wpt_type = 1`** (a straight run at `speed 2 × dt 1.0`). Types 2/3/4/5 never occurred, so +node-line travel, node routes, gate teleports and the probabilistic jump remain untested, +and the generator never moved in this hook. + +Of the 15 moving calls, ULP deltas (orig − ours) on the position: + +| call | fleet | Δx | Δy | Δz | +|---|---|---|---|---| +| 6, 41, 78, 115, 154 | 34 | 0 | 0 | 0 / 0 / 0 / 0 / **+4** | +| 42, 79, 116 | 50 | 0 | **+1 / −1 / −64** | 0 | +| 80, 117 | 66 | 0 | **+1** / 0 | 0 | +| 118, 157 | 98 | 0 | **+1 / −1** | 0 / **+1** | +| 155, 156, 158 | 50/66/114 | 0 / **−1** / 0 | 0 / **−1** / 0 | 0 | + +The 64-ULP case is a near-zero result (0.0167…): the **absolute** error is ~1.2e-7 in every +case, i.e. half an ULP at the magnitude of the *inputs* (y ≈ 1.6–4.7), not of the result. +That is the signature of one rounding too many (or too few) in the position update — +`sim::AdvanceAlongDirection` narrowing an intermediate to float32 where the original keeps +the x87 53-bit double, or the reverse. It is not a formula error: x, y and z all diverge in +some call, the step length is right, and every ship-range region matched. + +**Why B4 missed it:** B4 had exactly one moving call, fleet 34 — and fleet 34 matches +bit-for-bit on four of its five moves here too. The bug only shows once other fleets start +moving. A reader of B4's trace would have seen "1 straight move, verified"; the verdict said +"MoveFleet verified". + +Guard `fleet` (0x120 span), 42 writes on the 15 moving calls, resolved against the +`StarFleet` table: + +| offset | len | field | count | +|---|---|---|---| +| `fleet+0x10c` | 1 | `Flags` (bit 0x100 = held this turn) | 15 — every moving call | +| `fleet+0xdc` | 1 | unnamed, just past `Speed` (`FPsp2` @0xd8) | 13 | +| `fleet+0xa0` | 4 | **`Location*`** — the fleet's Location object pointer is replaced | 8 | +| `fleet+0xcc` | 1 | `Waypoints` vector `last` pointer — **a waypoint was popped** | 2 | +| `fleet+0xdb` | 2 | straddles `Speed`/0xdc | 2 | +| `fleet+0xe0` | 26 | `FPogn2` @0xe0 … `DestPos` @0xec — the destination position rewrite | 2 | + +The two calls carrying `+0xcc` and `+0xe0` (115 and 155) are the **two arrivals** in the +whole run — and both compared clean, because none of the arrival machinery is declared. B4 +said "an arriving call was simply clean"; that is still true and still means nothing. + +## 7. What a reader of the trace would have noticed that no verdict did + +* `ProcessResearch` fires **3 times per End Turn**, not 15 — B3's 15 was five turns. Turn 1 + of `ref-turn2` contains **no tech completion at all**, which is why `OnTechResearched` + produced zero records on the reference workload and B2's three completions must have come + from a longer run. A lane that captures `OnTechResearched` on the documented one-turn + recipe will get an empty log and a green report. +* **The multi-turn continuation is not reproducible across sessions.** Turn 1 is + byte-identical to the oracle every time, and calls 0–3 reproduce `docs/B3.md` exactly + (`{144,2889}`, `{90,0}`, `{9,0}`, `{144,2898}`), but from turn 4 the AI picks a different + research target than B3 recorded (`{9,3064}` here vs `{142,3064}` there, `{18,3087}` vs + `{9,3086}`) while the point totals stay nearly identical. Anything past the first End Turn + should be treated as *a* run, not *the* run. +* `ComputeBudget` is called ~4280 times per session by the UI and ~8 times by the turn pass. + Any "N compares" headline for that hook is dominated by UI polling of one player. + +## 8. Still owed + +* The count-only `events` region for `ProcessResearch` recommended by lane E's + `docs/E-events.md` (converts audit row 1 from "known defect" to "checked"). Not wired — + this lane's captures predate that module and re-capturing a good trace was not worth it. +* `MoveFleet`'s 1-ULP position divergence needs the rounding in `AdvanceAlongDirection` + pinned against the instruction stream. +* `ServerSystem+0xd8` and `ServerSystem+0x238` are unnamed and are written every turn by the + AI home system. `StarFleet+0xdc` likewise, on every move. +* `vector otch` (`ServerPlayer+0x274`) is undeclared everywhere and is save + state. +* Nothing here exercises: replace mode (any hook), a Zuul double roll, a rebellion, an + addiction sweep, a plague, gate traffic, waypoint types 2–5, `silent = true` completions, + the budget expense/aid/debt tail, or the `Budget+0x64` over-budget write. diff --git a/verify/results/compare/recap-b1-compare.json b/verify/results/compare/recap-b1-compare.json new file mode 100644 index 0000000..932d9bc --- /dev/null +++ b/verify/results/compare/recap-b1-compare.json @@ -0,0 +1,470 @@ +{ + "coverage_contradicted": [], + "coverage_unstated": [], + "format": 1, + "hooks": { + "Game::ServerPlayer::ComputeBudget": { + "calls": 4284, + "compared": 4284, + "coverage": { + "checked_regions": [ + "budget", + "inputs", + "research_alloc" + ], + "guarded_calls": 4284, + "guards": [ + "budget_object" + ], + "spans": { + "compare": [] + }, + "state": "partial", + "undeclared_calls": 0, + "undeclared_writes": 0, + "unmodelled": [ + { + "mitigation": "declared input boundary; see budget_inputs.h", + "risk": "high", + "what": "slots 1, 2, 3, 4, 7 and 11 are produced by callees this milestone does not model (per-system output, trade, ship-carried population, a second manager, the build-queue spend)", + "why": "they are copied out of the original's own output and back into the same slots, so they match BY CONSTRUCTION and prove nothing" + }, + { + "mitigation": "guard:budget_object does not reach the ships; unverified", + "risk": "high", + "what": "ServerSystem::ComputeOutput repairs damaged ships in orbit", + "why": "replace mode runs the original a second time on a scratch Budget to harvest the six unmodelled slots, so that repair happens TWICE per turn in replace mode and nothing in the trace would show it" + }, + { + "mitigation": "", + "risk": "medium", + "what": "the difficulty-mods row from StrategyServer::GetDifficultyMods", + "why": "not reachable from a ServerPlayer, so the two relevant entries are fitted constants measured from the B1 trace rather than snapshotted inputs" + }, + { + "mitigation": "", + "risk": "low", + "what": "the research-allocation vector's heap block", + "why": "only the element count is compared; the three words are heap pointers the default policy ignores" + } + ], + "verdict": "partial", + "why": "" + }, + "diffs": [], + "diverged": 0, + "diverged_call_ids": [], + "errors": 0, + "modes": { + "compare": 4284 + } + } + }, + "inputs": [ + "/tmp/claude-1000/-home-alex/ec8e34f8-af37-4ef2-a309-ed6a15293097/scratchpad/recap-b1-compare.jsonl" + ], + "invalid": [], + "kind": "report", + "meta": [ + { + "build": "recap-7584bad-20260908T0615Z", + "exe_sha256": "970b7de729956a53094c7eb98aba4270aee98e2fed5daf0d39e290013c90c841", + "format": 1, + "hooks": { + "Game::SectionDictionary::SectionDictionary": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "see docs/M2.md; compare mode for this hook is not safe to run", + "risk": "high", + "what": "LoadSection registers each section with the string table and the live TechTree, and may append to the dictionary's own vector", + "why": "M3 scope; ours delegates to the game's LoadSection after the original has already built all 885 definitions, so the second pass registers duplicates -- the leading hypothesis for this hook's compare-mode crash" + }, + { + "mitigation": "", + "risk": "medium", + "what": "post-load validation pass over every definition's @-token against the string table", + "why": "runs after the loop and touches no declared region" + }, + { + "mitigation": "", + "risk": "low", + "what": "allocates 885 SectionDef objects (0x3d8 bytes each) on the game heap", + "why": "they do not exist at hook entry; compared by index/species/id/token" + }, + { + "mitigation": "guard:dict", + "risk": "low", + "what": "the word at dictionary+0x14", + "why": "not modelled; emitted as an ignored pointer" + }, + { + "mitigation": "", + "risk": "medium", + "what": "the before-snapshot of the object is uninitialised heap", + "why": "the hook is on the constructor, so `before` is meaningless and only `after` carries information" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::ServerPlayer::ComputeBudget": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "declared input boundary; see budget_inputs.h", + "risk": "high", + "what": "slots 1, 2, 3, 4, 7 and 11 are produced by callees this milestone does not model (per-system output, trade, ship-carried population, a second manager, the build-queue spend)", + "why": "they are copied out of the original's own output and back into the same slots, so they match BY CONSTRUCTION and prove nothing" + }, + { + "mitigation": "guard:budget_object does not reach the ships; unverified", + "risk": "high", + "what": "ServerSystem::ComputeOutput repairs damaged ships in orbit", + "why": "replace mode runs the original a second time on a scratch Budget to harvest the six unmodelled slots, so that repair happens TWICE per turn in replace mode and nothing in the trace would show it" + }, + { + "mitigation": "", + "risk": "medium", + "what": "the difficulty-mods row from StrategyServer::GetDifficultyMods", + "why": "not reachable from a ServerPlayer, so the two relevant entries are fitted constants measured from the B1 trace rather than snapshotted inputs" + }, + { + "mitigation": "", + "risk": "low", + "what": "the research-allocation vector's heap block", + "why": "only the element count is compared; the three words are heap pointers the default policy ignores" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::ServerPlayer::OnTechResearched": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "guard:player (EventStorage is inline at ServerPlayer+0x29c)", + "risk": "high", + "what": "posts EVENT_RESEARCH_COMPLETE / _UNDERBUDGET / _TEMPERANCE on the owner's EventStorage when !silent", + "why": "the same class of write as B3's defect, and this hook has no replace-mode oracle that could catch it: gotcha 4 in docs/B2.md says a changed save hash on a completion turn is expected and therefore not a finding" + }, + { + "mitigation": "", + "risk": "high", + "what": "writes every owned system's AI flag (CCC_AIVrus / CCC_AISlv), re-evaluates the arcology civilian cap, cures addiction and clears plague across systems AND ships", + "why": "writes through pointers to other objects; compare mode must not touch live state, and no region reaches them" + }, + { + "mitigation": "this is the extra draw B3 observed on a completion", + "risk": "high", + "what": "the pending plague-cure roll (ServerPlayer::RollResearchEvent)", + "why": "it draws exactly one word from the strategic generator unconditionally; running it in compare mode would consume real randomness. The two words it guards are still cleared and the record says whether it would have fired" + }, + { + "mitigation": "", + "risk": "medium", + "what": "TechTree::SetResearched for the Zuul boarding-pod grant", + "why": "it would mutate the live tree, and it recurses" + }, + { + "mitigation": "region:node_bore, declared only when the block already exists", + "risk": "medium", + "what": "allocates or frees the node-bore block at ServerPlayer+0x308", + "why": "ours has no allocator the game's runtime could free, so replace mode calls the game's own updater -- which means replace mode never exercises our node-bore selection at all" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::ServerSystem::ProcessTurn": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "guard:system", + "risk": "high", + "what": "the addiction sweep raises MoraleEvents, which are constructed and appended to the system's capped morale history", + "why": "the same class of write as B3's defect. sim::ProcessColonyTurn does compute the morale events (ColonyTurnResult), but the hook never emits them: DescribeMoraleEvents is dead code, so they are neither compared nor logged" + }, + { + "mitigation": "guard:system covers the system object only, not the other objects", + "risk": "high", + "what": "every callee: the plague pass, imperial and civilian growth, the resource debit, in-orbit refuel, slaves, rebellion and the build queue", + "why": "declared input boundary -- ProcessTurn is a dispatcher and only the words it writes itself are modelled. The callees raise EVENT_SLAVES_DEAD, EVENT_SYSTEM_REBELLION_CONTINUES, the plague events and SEBuildCompleted, create ships and bump per-player ShipRecords counters" + }, + { + "mitigation": "", + "risk": "medium", + "what": "ApplyInfraBonus / ApplyPopBonus read the owner's home-system id, and the build queue writes the owning ServerPlayer", + "why": "writes through a pointer to another object; no region reaches the player" + }, + { + "mitigation": "", + "risk": "low", + "what": "ProcessRebellion is the pass's only RNG consumer and its draw count is data-dependent", + "why": "the generator IS a declared region, so a moved post-state is visible and names the system whose rebellion fired -- it is reported, not modelled" + }, + { + "mitigation": "", + "risk": "medium", + "what": "replace mode is refused for this hook", + "why": "our side models the dispatcher's own writes and none of the callees, so a replace run would silently skip a colony's whole turn. There is therefore no oracle layer behind the compare for this hook" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::StrategyServer::MoveFleet": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "guard:fleet sees the fleet's own words; the event and the system do not", + "risk": "high", + "what": "on arrival: dispatches SEFleetArrived and runs one of three arrival handlers by destination kind (enter system / join fleet / stop at point)", + "why": "declared input boundary -- an arriving call is expected to differ in all of it, and none of it is declared, so the compare says nothing about arrivals" + }, + { + "mitigation": "", + "risk": "high", + "what": "on departure: cancels every still-acting ship (with a log line each) and calls ServerSystem::FleetDeparts, which rewrites the system's ownership bits", + "why": "writes through pointers to ships and to the system" + }, + { + "mitigation": "", + "risk": "medium", + "what": "the tanker top-up refuels other ships in the fleet", + "why": "the per-ship range regions would show it, but ours does not model it, so a fleet with a tanker diverges for a known reason" + }, + { + "mitigation": "declared gap: docs/B4.md", + "risk": "medium", + "what": "a node-line waypoint's step comes from the stutter profile", + "why": "NodeLineStep / BuildStutterSegments are written and unit-tested but not wired in; the hook steps every waypoint type as speed x dt, so a node-line leg is knowingly mis-stepped and only its type is recorded" + }, + { + "mitigation": "", + "risk": "medium", + "what": "a missed probabilistic jump scatters the fleet in a random direction", + "why": "the direction is a second draw whose mapping is not modelled; ours leaves the position alone and reports the scatter distance, so the generator region diverges by one word on a miss" + }, + { + "mitigation": "", + "risk": "medium", + "what": "the route revalidation and the waypoint list itself", + "why": "declared input boundary; the waypoint vector is not a region" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::StrategyServer::ProcessFleetMovement": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "", + "risk": "high", + "what": "`ours` re-reads the LIVE fleet list after the original has run", + "why": "the gate-traffic total is computed by the original at the very end of the pass, so a pre-call snapshot would diverge for the wrong reason. It breaks the compare invariant that ours never touches live memory, and it makes this hook's verdict partly self-fulfilling: the input to our arithmetic is the original's own post-move state" + }, + { + "mitigation": "", + "risk": "high", + "what": "drives MoveFleet up to five times per fleet", + "why": "every undeclared effect of MoveFleet happens inside this call too; the pass schedule is recorded in the arguments but never compared" + }, + { + "mitigation": "", + "risk": "high", + "what": "writes FPdpos into every fleet and clears flags 0x2 and 0x100 on every fleet", + "why": "no region covers the fleets, only the players' gate-traffic words" + }, + { + "mitigation": "", + "risk": "high", + "what": "OnFleetArrived posts EVENT_FLEET_ARRIVED", + "why": "the same class of write as B3's defect, and there is no replace mode for this hook, so nothing behind the compare could catch it either" + }, + { + "mitigation": "", + "risk": "medium", + "what": "the original accumulates by player->index but writes back by the player's position in the server vector, into a fixed 32-int array with no bounds check", + "why": "a real latent bug in the original that our side reproduces only while index == position; the reference save never separates them" + }, + { + "mitigation": "", + "risk": "medium", + "what": "PassSchedule() is never called by the hook, and FleetSummary::targetFleetId / relation are never filled", + "why": "the header claims ours predicts the call order for a trace to check; that prediction is not actually emitted" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::TechTree::ProcessResearch": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "region:events (EvNxID now diverges instead of passing silently)", + "risk": "high", + "what": "posts EVENT_RESEARCH_OVERBUDGET on the owner's EventStorage in the same branch that sets node.flag = 2", + "why": "the message text is composed from the tech name, so ours cannot synthesise it; it would have to be posted through the game's own event API. This is the defect that made a clean compare false: replace mode's autosave differed from the oracle by exactly this one event" + }, + { + "mitigation": "region:events", + "risk": "medium", + "what": "posts EVENT_TECHS_UNLOCKED for nodes that became available this turn", + "why": "the trailing unlock loop makes no draw and writes no node, but it does build a names list and post an event" + }, + { + "mitigation": "guard:player, guard:tree_header", + "risk": "high", + "what": "TechTree::SetResearched on completion: the turn/order stamps, the child unlock cascade, the recursive research of zero-cost children, and the owner's OnTechResearched callback", + "why": "its own milestone (B2); the callback writes live player state that compare mode must not touch, and it consumes one extra RNG word" + }, + { + "mitigation": "guard:tree_header", + "risk": "medium", + "what": "bumps the tree's completion-order counter (TechTree+0x20)", + "why": "part of SetResearched; the per-node `order` word is compared but the counter it comes from was not a region" + }, + { + "mitigation": "", + "risk": "low", + "what": "writes a completion line to the game log", + "why": "log text is not simulation state" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::WeaponDictionary::Init": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "suspected cause of the sibling section hook's compare crash (docs/M2.md)", + "risk": "high", + "what": "LoadWeapon -> WeaponDef::ParseScript registers each weapon's name with the string table and resolves `requires` against the live TechTree", + "why": "per-file parsing is M3 scope; ours delegates to the game's own LoadWeapon, so a compare run performs the registration a SECOND time and neither the string table nor the tech tree is a declared region" + }, + { + "mitigation": "", + "risk": "low", + "what": "allocates 123 WeaponDef objects (0x278 bytes each) on the game heap", + "why": "the definitions do not exist when the hook is entered, so they cannot be a before-snapshot; the dictionary region compares them by id/name/path" + }, + { + "mitigation": "guard:dict", + "risk": "low", + "what": "the word at dictionary+0x14", + "why": "not modelled; emitted as an opaque pointer, which the default policy ignores -- a change is visible in a trace but never a divergence" + }, + { + "mitigation": "", + "risk": "low", + "what": "writes lines to the game log for a missing manifest", + "why": "log text is not simulation state" + }, + { + "mitigation": "", + "risk": "low", + "what": "std::sort tie order for equal weapon names", + "why": "msvc_sort.h replays MSVC 2010's introsort, but the shipped data has no tied names, so the tie rule is unexercised rather than verified" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Mars::GlobalConsts::LoadFile": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "LoadAll's post-state would have to be hooked to see it", + "risk": "medium", + "what": "erases each consumed key from the caller's std::map", + "why": "the map is a LoadAll temporary; declaring a red-black tree as a region is not possible before the call. First-occurrence-wins is reproduced in game::config::apply instead, so the *effect* is modelled, the container is not" + }, + { + "mitigation": "", + "risk": "low", + "what": "writes three kinds of line to the game log (unrecognised key, applied key, expected-but-not-found)", + "why": "log text is not part of the simulation state" + }, + { + "mitigation": "", + "risk": "low", + "what": "opens the file through the VFS and allocates/releases a refcounted buffer", + "why": "ours performs the same two calls, so allocation behaviour matches by construction rather than by comparison" + }, + { + "mitigation": "", + "risk": "low", + "what": "String slots assign through the engine's own std::string, leaking one heap block per long string in compare mode", + "why": "start-up only; documented in docs/M1.md" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Shim::SelfTest::Fill": { + "coverage": { + "state": "complete", + "unmodelled": [], + "why": "Fill writes buf[0..n) and nothing else; the whole range is a declared region" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + } + }, + "inline_max": 256, + "started": "2026-09-08T06:40:02Z" + } + ], + "totals": { + "calls": 4284, + "compared": 4284, + "coverage_contradicted": 0, + "coverage_unstated": 0, + "diverged": 0, + "guarded_calls": 4284, + "invalid_records": 0, + "undeclared_calls": 0, + "undeclared_writes": 0 + }, + "warnings": [] +} diff --git a/verify/results/compare/recap-b1-compare.md b/verify/results/compare/recap-b1-compare.md new file mode 100644 index 0000000..81edf9d --- /dev/null +++ b/verify/results/compare/recap-b1-compare.md @@ -0,0 +1,21 @@ +## tracecmp report: recap-b1-compare.jsonl + +- build: recap-7584bad-20260908T0615Z started: 2026-09-08T06:40:02Z inline_max: 256 +- calls: 4284 compared: 4284 diverged: 0 invalid records: 0 warnings: 0 +- coverage: 4284 guarded call(s), 0 undeclared write(s) in 0 call(s); 0 hook(s) unstated, 0 contradicted + +| hook | calls | modes | compared | diverged | errors | +|---|---|---|---|---|---| +| Game::ServerPlayer::ComputeBudget | 4284 | compare:4284 | 4284 | 0 | 0 | + +### coverage + +| hook | verdict | compared regions | guards | undeclared writes | unmodelled | +|---|---|---|---|---|---| +| Game::ServerPlayer::ComputeBudget | partial | budget, inputs, research_alloc | budget_object | 0 | 4 | + +#### Game::ServerPlayer::ComputeBudget — not checked by this run +- (high) slots 1, 2, 3, 4, 7 and 11 are produced by callees this milestone does not model (per-system output, trade, ship-carried population, a second manager, the build-queue spend) — they are copied out of the original's own output and back into the same slots, so they match BY CONSTRUCTION and prove nothing [declared input boundary; see budget_inputs.h] +- (high) ServerSystem::ComputeOutput repairs damaged ships in orbit — replace mode runs the original a second time on a scratch Budget to harvest the six unmodelled slots, so that repair happens TWICE per turn in replace mode and nothing in the trace would show it [guard:budget_object does not reach the ships; unverified] +- (medium) the difficulty-mods row from StrategyServer::GetDifficultyMods — not reachable from a ServerPlayer, so the two relevant entries are fitted constants measured from the B1 trace rather than snapshotted inputs +- (low) the research-allocation vector's heap block — only the element count is compared; the three words are heap pointers the default policy ignores diff --git a/verify/results/compare/recap-b3-compare-t1-5.json b/verify/results/compare/recap-b3-compare-t1-5.json new file mode 100644 index 0000000..d30e331 --- /dev/null +++ b/verify/results/compare/recap-b3-compare-t1-5.json @@ -0,0 +1,1088 @@ +{ + "coverage_contradicted": [], + "coverage_unstated": [], + "format": 1, + "hooks": { + "Game::TechTree::ProcessResearch": { + "calls": 15, + "compared": 15, + "coverage": { + "checked_regions": [ + "events", + "node[0]", + "node[105]", + "node[106]", + "node[107]", + "node[108]", + "node[109]", + "node[10]", + "node[110]", + "node[111]", + "node[112]", + "node[113]", + "node[114]", + "node[115]", + "node[116]", + "node[117]", + "node[118]", + "node[119]", + "node[11]", + "node[120]", + "node[121]", + "node[122]", + "node[123]", + "node[124]", + "node[125]", + "node[126]", + "node[127]", + "node[128]", + "node[129]", + "node[12]", + "node[130]", + "node[131]", + "node[132]", + "node[133]", + "node[134]", + "node[135]", + "node[136]", + "node[137]", + "node[138]", + "node[139]", + "node[13]", + "node[140]", + "node[141]", + "node[142]", + "node[143]", + "node[144]", + "node[145]", + "node[146]", + "node[147]", + "node[148]", + "node[149]", + "node[14]", + "node[151]", + "node[152]", + "node[153]", + "node[154]", + "node[155]", + "node[156]", + "node[157]", + "node[158]", + "node[159]", + "node[15]", + "node[160]", + "node[161]", + "node[162]", + "node[163]", + "node[164]", + "node[165]", + "node[166]", + "node[167]", + "node[168]", + "node[169]", + "node[16]", + "node[170]", + "node[171]", + "node[172]", + "node[173]", + "node[174]", + "node[175]", + "node[177]", + "node[178]", + "node[179]", + "node[17]", + "node[180]", + "node[181]", + "node[182]", + "node[183]", + "node[184]", + "node[185]", + "node[186]", + "node[187]", + "node[188]", + "node[189]", + "node[18]", + "node[190]", + "node[191]", + "node[192]", + "node[193]", + "node[194]", + "node[195]", + "node[196]", + "node[197]", + "node[198]", + "node[199]", + "node[19]", + "node[1]", + "node[200]", + "node[201]", + "node[202]", + "node[203]", + "node[204]", + "node[205]", + "node[206]", + "node[207]", + "node[208]", + "node[209]", + "node[20]", + "node[210]", + "node[211]", + "node[212]", + "node[213]", + "node[214]", + "node[215]", + "node[216]", + "node[217]", + "node[218]", + "node[219]", + "node[21]", + "node[220]", + "node[221]", + "node[222]", + "node[223]", + "node[224]", + "node[225]", + "node[226]", + "node[227]", + "node[228]", + "node[229]", + "node[22]", + "node[230]", + "node[231]", + "node[232]", + "node[233]", + "node[234]", + "node[235]", + "node[236]", + "node[237]", + "node[238]", + "node[239]", + "node[23]", + "node[240]", + "node[241]", + "node[242]", + "node[243]", + "node[244]", + "node[245]", + "node[246]", + "node[247]", + "node[248]", + "node[249]", + "node[24]", + "node[250]", + "node[251]", + "node[252]", + "node[253]", + "node[254]", + "node[255]", + "node[256]", + "node[257]", + "node[258]", + "node[259]", + "node[25]", + "node[260]", + "node[261]", + "node[262]", + "node[263]", + "node[264]", + "node[265]", + "node[266]", + "node[267]", + "node[268]", + "node[269]", + "node[26]", + "node[270]", + "node[271]", + "node[272]", + "node[273]", + "node[274]", + "node[275]", + "node[276]", + "node[277]", + "node[278]", + "node[279]", + "node[27]", + "node[280]", + "node[281]", + "node[282]", + "node[283]", + "node[284]", + "node[285]", + "node[286]", + "node[287]", + "node[288]", + "node[289]", + "node[28]", + "node[290]", + "node[291]", + "node[292]", + "node[29]", + "node[2]", + "node[30]", + "node[31]", + "node[32]", + "node[33]", + "node[34]", + "node[35]", + "node[36]", + "node[37]", + "node[38]", + "node[39]", + "node[3]", + "node[40]", + "node[41]", + "node[42]", + "node[43]", + "node[44]", + "node[45]", + "node[46]", + "node[47]", + "node[48]", + "node[49]", + "node[4]", + "node[50]", + "node[51]", + "node[52]", + "node[53]", + "node[54]", + "node[55]", + "node[56]", + "node[57]", + "node[58]", + "node[5]", + "node[60]", + "node[61]", + "node[62]", + "node[63]", + "node[64]", + "node[65]", + "node[66]", + "node[67]", + "node[68]", + "node[69]", + "node[6]", + "node[70]", + "node[72]", + "node[74]", + "node[77]", + "node[78]", + "node[7]", + "node[80]", + "node[81]", + "node[85]", + "node[86]", + "node[87]", + "node[88]", + "node[89]", + "node[8]", + "node[90]", + "node[91]", + "node[92]", + "node[94]", + "node[98]", + "node[99]", + "node[9]", + "overbudget", + "rng" + ], + "guarded_calls": 15, + "guards": [ + "player", + "tree_header" + ], + "spans": { + "compare": [ + "player+0x10c:3", + "player+0x110:3", + "player+0x114:3", + "player+0x124:3", + "player+0x274:3", + "player+0x278:3", + "player+0x27c:3", + "player+0x294:4", + "tree_header+0x20:1", + "player+0x130:3", + "player+0x278:1" + ] + }, + "state": "partial", + "undeclared_calls": 2, + "undeclared_writes": 13, + "unmodelled": [ + { + "mitigation": "region:events (EvNxID now diverges instead of passing silently)", + "risk": "high", + "what": "posts EVENT_RESEARCH_OVERBUDGET on the owner's EventStorage in the same branch that sets node.flag = 2", + "why": "the message text is composed from the tech name, so ours cannot synthesise it; it would have to be posted through the game's own event API. This is the defect that made a clean compare false: replace mode's autosave differed from the oracle by exactly this one event" + }, + { + "mitigation": "region:events", + "risk": "medium", + "what": "posts EVENT_TECHS_UNLOCKED for nodes that became available this turn", + "why": "the trailing unlock loop makes no draw and writes no node, but it does build a names list and post an event" + }, + { + "mitigation": "guard:player, guard:tree_header", + "risk": "high", + "what": "TechTree::SetResearched on completion: the turn/order stamps, the child unlock cascade, the recursive research of zero-cost children, and the owner's OnTechResearched callback", + "why": "its own milestone (B2); the callback writes live player state that compare mode must not touch, and it consumes one extra RNG word" + }, + { + "mitigation": "guard:tree_header", + "risk": "medium", + "what": "bumps the tree's completion-order counter (TechTree+0x20)", + "why": "part of SetResearched; the per-node `order` word is compared but the counter it comes from was not a region" + }, + { + "mitigation": "", + "risk": "low", + "what": "writes a completion line to the game log", + "why": "log text is not simulation state" + } + ], + "verdict": "partial", + "why": "" + }, + "diffs": [ + { + "call_id": 0, + "diff": [ + { + "orig": { + "t": "i32", + "v": 4 + }, + "ours": { + "t": "i32", + "v": 3 + }, + "path": "side.events.after.v.next_id", + "why": "exact" + } + ], + "file": "recap-b3-compare5.jsonl", + "line": 2 + }, + { + "call_id": 3, + "diff": [ + { + "orig": { + "t": "i32", + "v": 7 + }, + "ours": { + "t": "i32", + "v": 5 + }, + "path": "side.events.after.v.next_id", + "why": "exact" + }, + { + "orig": { + "t": "i32", + "v": 10000 + }, + "ours": { + "t": "i32", + "v": 2147483647 + }, + "path": "side.node[132].after.v.cost_rp", + "why": "exact" + }, + { + "orig": { + "t": "i32", + "v": 2 + }, + "ours": { + "t": "i32", + "v": 0 + }, + "path": "side.node[132].after.v.state", + "why": "exact" + }, + { + "orig": { + "t": "i32", + "v": 4 + }, + "ours": { + "t": "i32", + "v": -1 + }, + "path": "side.node[132].after.v.turn_available", + "why": "exact" + }, + { + "orig": { + "t": "i32", + "v": 16000 + }, + "ours": { + "t": "i32", + "v": 2147483647 + }, + "path": "side.node[136].after.v.cost_rp", + "why": "exact" + }, + { + "orig": { + "t": "i32", + "v": 2 + }, + "ours": { + "t": "i32", + "v": 0 + }, + "path": "side.node[136].after.v.state", + "why": "exact" + }, + { + "orig": { + "t": "i32", + "v": 4 + }, + "ours": { + "t": "i32", + "v": -1 + }, + "path": "side.node[136].after.v.turn_available", + "why": "exact" + }, + { + "orig": { + "t": "i32", + "v": 8000 + }, + "ours": { + "t": "i32", + "v": 2147483647 + }, + "path": "side.node[142].after.v.cost_rp", + "why": "exact" + }, + { + "orig": { + "t": "i32", + "v": 2 + }, + "ours": { + "t": "i32", + "v": 0 + }, + "path": "side.node[142].after.v.state", + "why": "exact" + }, + { + "orig": { + "t": "i32", + "v": 4 + }, + "ours": { + "t": "i32", + "v": -1 + }, + "path": "side.node[142].after.v.turn_available", + "why": "exact" + }, + { + "orig": { + "t": "i32", + "v": 22 + }, + "ours": { + "t": "i32", + "v": -1 + }, + "path": "side.node[144].after.v.order", + "why": "exact" + }, + { + "orig": { + "t": "i32", + "v": 4 + }, + "ours": { + "t": "i32", + "v": -1 + }, + "path": "side.node[144].after.v.turn_researched", + "why": "exact" + } + ], + "file": "recap-b3-compare5.jsonl", + "line": 5 + }, + { + "call_id": 9, + "diff": [ + { + "orig": { + "t": "i32", + "v": 12 + }, + "ours": { + "t": "i32", + "v": 10 + }, + "path": "side.events.after.v.next_id", + "why": "exact" + }, + { + "orig": { + "t": "i32", + "v": 35000 + }, + "ours": { + "t": "i32", + "v": 2147483647 + }, + "path": "side.node[12].after.v.cost_rp", + "why": "exact" + }, + { + "orig": { + "t": "i32", + "v": 2 + }, + "ours": { + "t": "i32", + "v": 0 + }, + "path": "side.node[12].after.v.state", + "why": "exact" + }, + { + "orig": { + "t": "i32", + "v": 6 + }, + "ours": { + "t": "i32", + "v": -1 + }, + "path": "side.node[12].after.v.turn_available", + "why": "exact" + }, + { + "orig": { + "t": "i32", + "v": 4000 + }, + "ours": { + "t": "i32", + "v": 2147483647 + }, + "path": "side.node[18].after.v.cost_rp", + "why": "exact" + }, + { + "orig": { + "t": "i32", + "v": 2 + }, + "ours": { + "t": "i32", + "v": 0 + }, + "path": "side.node[18].after.v.state", + "why": "exact" + }, + { + "orig": { + "t": "i32", + "v": 6 + }, + "ours": { + "t": "i32", + "v": -1 + }, + "path": "side.node[18].after.v.turn_available", + "why": "exact" + }, + { + "orig": { + "t": "i32", + "v": 13000 + }, + "ours": { + "t": "i32", + "v": 2147483647 + }, + "path": "side.node[3].after.v.cost_rp", + "why": "exact" + }, + { + "orig": { + "t": "i32", + "v": 2 + }, + "ours": { + "t": "i32", + "v": 0 + }, + "path": "side.node[3].after.v.state", + "why": "exact" + }, + { + "orig": { + "t": "i32", + "v": 6 + }, + "ours": { + "t": "i32", + "v": -1 + }, + "path": "side.node[3].after.v.turn_available", + "why": "exact" + }, + { + "orig": { + "t": "i32", + "v": 23 + }, + "ours": { + "t": "i32", + "v": -1 + }, + "path": "side.node[9].after.v.order", + "why": "exact" + }, + { + "orig": { + "t": "i32", + "v": 6 + }, + "ours": { + "t": "i32", + "v": -1 + }, + "path": "side.node[9].after.v.turn_researched", + "why": "exact" + } + ], + "file": "recap-b3-compare5.jsonl", + "line": 11 + } + ], + "diverged": 3, + "diverged_call_ids": [ + 0, + 3, + 9 + ], + "errors": 0, + "modes": { + "compare": 15 + } + } + }, + "inputs": [ + "/tmp/claude-1000/-home-alex/ec8e34f8-af37-4ef2-a309-ed6a15293097/scratchpad/recap-b3-compare5.jsonl" + ], + "invalid": [], + "kind": "report", + "meta": [ + { + "build": "recap-7584bad-20260908T0615Z", + "exe_sha256": "970b7de729956a53094c7eb98aba4270aee98e2fed5daf0d39e290013c90c841", + "format": 1, + "hooks": { + "Game::SectionDictionary::SectionDictionary": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "see docs/M2.md; compare mode for this hook is not safe to run", + "risk": "high", + "what": "LoadSection registers each section with the string table and the live TechTree, and may append to the dictionary's own vector", + "why": "M3 scope; ours delegates to the game's LoadSection after the original has already built all 885 definitions, so the second pass registers duplicates -- the leading hypothesis for this hook's compare-mode crash" + }, + { + "mitigation": "", + "risk": "medium", + "what": "post-load validation pass over every definition's @-token against the string table", + "why": "runs after the loop and touches no declared region" + }, + { + "mitigation": "", + "risk": "low", + "what": "allocates 885 SectionDef objects (0x3d8 bytes each) on the game heap", + "why": "they do not exist at hook entry; compared by index/species/id/token" + }, + { + "mitigation": "guard:dict", + "risk": "low", + "what": "the word at dictionary+0x14", + "why": "not modelled; emitted as an ignored pointer" + }, + { + "mitigation": "", + "risk": "medium", + "what": "the before-snapshot of the object is uninitialised heap", + "why": "the hook is on the constructor, so `before` is meaningless and only `after` carries information" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::ServerPlayer::ComputeBudget": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "declared input boundary; see budget_inputs.h", + "risk": "high", + "what": "slots 1, 2, 3, 4, 7 and 11 are produced by callees this milestone does not model (per-system output, trade, ship-carried population, a second manager, the build-queue spend)", + "why": "they are copied out of the original's own output and back into the same slots, so they match BY CONSTRUCTION and prove nothing" + }, + { + "mitigation": "guard:budget_object does not reach the ships; unverified", + "risk": "high", + "what": "ServerSystem::ComputeOutput repairs damaged ships in orbit", + "why": "replace mode runs the original a second time on a scratch Budget to harvest the six unmodelled slots, so that repair happens TWICE per turn in replace mode and nothing in the trace would show it" + }, + { + "mitigation": "", + "risk": "medium", + "what": "the difficulty-mods row from StrategyServer::GetDifficultyMods", + "why": "not reachable from a ServerPlayer, so the two relevant entries are fitted constants measured from the B1 trace rather than snapshotted inputs" + }, + { + "mitigation": "", + "risk": "low", + "what": "the research-allocation vector's heap block", + "why": "only the element count is compared; the three words are heap pointers the default policy ignores" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::ServerPlayer::OnTechResearched": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "guard:player (EventStorage is inline at ServerPlayer+0x29c)", + "risk": "high", + "what": "posts EVENT_RESEARCH_COMPLETE / _UNDERBUDGET / _TEMPERANCE on the owner's EventStorage when !silent", + "why": "the same class of write as B3's defect, and this hook has no replace-mode oracle that could catch it: gotcha 4 in docs/B2.md says a changed save hash on a completion turn is expected and therefore not a finding" + }, + { + "mitigation": "", + "risk": "high", + "what": "writes every owned system's AI flag (CCC_AIVrus / CCC_AISlv), re-evaluates the arcology civilian cap, cures addiction and clears plague across systems AND ships", + "why": "writes through pointers to other objects; compare mode must not touch live state, and no region reaches them" + }, + { + "mitigation": "this is the extra draw B3 observed on a completion", + "risk": "high", + "what": "the pending plague-cure roll (ServerPlayer::RollResearchEvent)", + "why": "it draws exactly one word from the strategic generator unconditionally; running it in compare mode would consume real randomness. The two words it guards are still cleared and the record says whether it would have fired" + }, + { + "mitigation": "", + "risk": "medium", + "what": "TechTree::SetResearched for the Zuul boarding-pod grant", + "why": "it would mutate the live tree, and it recurses" + }, + { + "mitigation": "region:node_bore, declared only when the block already exists", + "risk": "medium", + "what": "allocates or frees the node-bore block at ServerPlayer+0x308", + "why": "ours has no allocator the game's runtime could free, so replace mode calls the game's own updater -- which means replace mode never exercises our node-bore selection at all" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::ServerSystem::ProcessTurn": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "guard:system", + "risk": "high", + "what": "the addiction sweep raises MoraleEvents, which are constructed and appended to the system's capped morale history", + "why": "the same class of write as B3's defect. sim::ProcessColonyTurn does compute the morale events (ColonyTurnResult), but the hook never emits them: DescribeMoraleEvents is dead code, so they are neither compared nor logged" + }, + { + "mitigation": "guard:system covers the system object only, not the other objects", + "risk": "high", + "what": "every callee: the plague pass, imperial and civilian growth, the resource debit, in-orbit refuel, slaves, rebellion and the build queue", + "why": "declared input boundary -- ProcessTurn is a dispatcher and only the words it writes itself are modelled. The callees raise EVENT_SLAVES_DEAD, EVENT_SYSTEM_REBELLION_CONTINUES, the plague events and SEBuildCompleted, create ships and bump per-player ShipRecords counters" + }, + { + "mitigation": "", + "risk": "medium", + "what": "ApplyInfraBonus / ApplyPopBonus read the owner's home-system id, and the build queue writes the owning ServerPlayer", + "why": "writes through a pointer to another object; no region reaches the player" + }, + { + "mitigation": "", + "risk": "low", + "what": "ProcessRebellion is the pass's only RNG consumer and its draw count is data-dependent", + "why": "the generator IS a declared region, so a moved post-state is visible and names the system whose rebellion fired -- it is reported, not modelled" + }, + { + "mitigation": "", + "risk": "medium", + "what": "replace mode is refused for this hook", + "why": "our side models the dispatcher's own writes and none of the callees, so a replace run would silently skip a colony's whole turn. There is therefore no oracle layer behind the compare for this hook" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::StrategyServer::MoveFleet": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "guard:fleet sees the fleet's own words; the event and the system do not", + "risk": "high", + "what": "on arrival: dispatches SEFleetArrived and runs one of three arrival handlers by destination kind (enter system / join fleet / stop at point)", + "why": "declared input boundary -- an arriving call is expected to differ in all of it, and none of it is declared, so the compare says nothing about arrivals" + }, + { + "mitigation": "", + "risk": "high", + "what": "on departure: cancels every still-acting ship (with a log line each) and calls ServerSystem::FleetDeparts, which rewrites the system's ownership bits", + "why": "writes through pointers to ships and to the system" + }, + { + "mitigation": "", + "risk": "medium", + "what": "the tanker top-up refuels other ships in the fleet", + "why": "the per-ship range regions would show it, but ours does not model it, so a fleet with a tanker diverges for a known reason" + }, + { + "mitigation": "declared gap: docs/B4.md", + "risk": "medium", + "what": "a node-line waypoint's step comes from the stutter profile", + "why": "NodeLineStep / BuildStutterSegments are written and unit-tested but not wired in; the hook steps every waypoint type as speed x dt, so a node-line leg is knowingly mis-stepped and only its type is recorded" + }, + { + "mitigation": "", + "risk": "medium", + "what": "a missed probabilistic jump scatters the fleet in a random direction", + "why": "the direction is a second draw whose mapping is not modelled; ours leaves the position alone and reports the scatter distance, so the generator region diverges by one word on a miss" + }, + { + "mitigation": "", + "risk": "medium", + "what": "the route revalidation and the waypoint list itself", + "why": "declared input boundary; the waypoint vector is not a region" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::StrategyServer::ProcessFleetMovement": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "", + "risk": "high", + "what": "`ours` re-reads the LIVE fleet list after the original has run", + "why": "the gate-traffic total is computed by the original at the very end of the pass, so a pre-call snapshot would diverge for the wrong reason. It breaks the compare invariant that ours never touches live memory, and it makes this hook's verdict partly self-fulfilling: the input to our arithmetic is the original's own post-move state" + }, + { + "mitigation": "", + "risk": "high", + "what": "drives MoveFleet up to five times per fleet", + "why": "every undeclared effect of MoveFleet happens inside this call too; the pass schedule is recorded in the arguments but never compared" + }, + { + "mitigation": "", + "risk": "high", + "what": "writes FPdpos into every fleet and clears flags 0x2 and 0x100 on every fleet", + "why": "no region covers the fleets, only the players' gate-traffic words" + }, + { + "mitigation": "", + "risk": "high", + "what": "OnFleetArrived posts EVENT_FLEET_ARRIVED", + "why": "the same class of write as B3's defect, and there is no replace mode for this hook, so nothing behind the compare could catch it either" + }, + { + "mitigation": "", + "risk": "medium", + "what": "the original accumulates by player->index but writes back by the player's position in the server vector, into a fixed 32-int array with no bounds check", + "why": "a real latent bug in the original that our side reproduces only while index == position; the reference save never separates them" + }, + { + "mitigation": "", + "risk": "medium", + "what": "PassSchedule() is never called by the hook, and FleetSummary::targetFleetId / relation are never filled", + "why": "the header claims ours predicts the call order for a trace to check; that prediction is not actually emitted" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::TechTree::ProcessResearch": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "region:events (EvNxID now diverges instead of passing silently)", + "risk": "high", + "what": "posts EVENT_RESEARCH_OVERBUDGET on the owner's EventStorage in the same branch that sets node.flag = 2", + "why": "the message text is composed from the tech name, so ours cannot synthesise it; it would have to be posted through the game's own event API. This is the defect that made a clean compare false: replace mode's autosave differed from the oracle by exactly this one event" + }, + { + "mitigation": "region:events", + "risk": "medium", + "what": "posts EVENT_TECHS_UNLOCKED for nodes that became available this turn", + "why": "the trailing unlock loop makes no draw and writes no node, but it does build a names list and post an event" + }, + { + "mitigation": "guard:player, guard:tree_header", + "risk": "high", + "what": "TechTree::SetResearched on completion: the turn/order stamps, the child unlock cascade, the recursive research of zero-cost children, and the owner's OnTechResearched callback", + "why": "its own milestone (B2); the callback writes live player state that compare mode must not touch, and it consumes one extra RNG word" + }, + { + "mitigation": "guard:tree_header", + "risk": "medium", + "what": "bumps the tree's completion-order counter (TechTree+0x20)", + "why": "part of SetResearched; the per-node `order` word is compared but the counter it comes from was not a region" + }, + { + "mitigation": "", + "risk": "low", + "what": "writes a completion line to the game log", + "why": "log text is not simulation state" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::WeaponDictionary::Init": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "suspected cause of the sibling section hook's compare crash (docs/M2.md)", + "risk": "high", + "what": "LoadWeapon -> WeaponDef::ParseScript registers each weapon's name with the string table and resolves `requires` against the live TechTree", + "why": "per-file parsing is M3 scope; ours delegates to the game's own LoadWeapon, so a compare run performs the registration a SECOND time and neither the string table nor the tech tree is a declared region" + }, + { + "mitigation": "", + "risk": "low", + "what": "allocates 123 WeaponDef objects (0x278 bytes each) on the game heap", + "why": "the definitions do not exist when the hook is entered, so they cannot be a before-snapshot; the dictionary region compares them by id/name/path" + }, + { + "mitigation": "guard:dict", + "risk": "low", + "what": "the word at dictionary+0x14", + "why": "not modelled; emitted as an opaque pointer, which the default policy ignores -- a change is visible in a trace but never a divergence" + }, + { + "mitigation": "", + "risk": "low", + "what": "writes lines to the game log for a missing manifest", + "why": "log text is not simulation state" + }, + { + "mitigation": "", + "risk": "low", + "what": "std::sort tie order for equal weapon names", + "why": "msvc_sort.h replays MSVC 2010's introsort, but the shipped data has no tied names, so the tie rule is unexercised rather than verified" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Mars::GlobalConsts::LoadFile": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "LoadAll's post-state would have to be hooked to see it", + "risk": "medium", + "what": "erases each consumed key from the caller's std::map", + "why": "the map is a LoadAll temporary; declaring a red-black tree as a region is not possible before the call. First-occurrence-wins is reproduced in game::config::apply instead, so the *effect* is modelled, the container is not" + }, + { + "mitigation": "", + "risk": "low", + "what": "writes three kinds of line to the game log (unrecognised key, applied key, expected-but-not-found)", + "why": "log text is not part of the simulation state" + }, + { + "mitigation": "", + "risk": "low", + "what": "opens the file through the VFS and allocates/releases a refcounted buffer", + "why": "ours performs the same two calls, so allocation behaviour matches by construction rather than by comparison" + }, + { + "mitigation": "", + "risk": "low", + "what": "String slots assign through the engine's own std::string, leaking one heap block per long string in compare mode", + "why": "start-up only; documented in docs/M1.md" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Shim::SelfTest::Fill": { + "coverage": { + "state": "complete", + "unmodelled": [], + "why": "Fill writes buf[0..n) and nothing else; the whole range is a declared region" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + } + }, + "inline_max": 256, + "started": "2026-09-08T06:28:40Z" + } + ], + "totals": { + "calls": 15, + "compared": 15, + "coverage_contradicted": 0, + "coverage_unstated": 0, + "diverged": 3, + "guarded_calls": 15, + "invalid_records": 0, + "undeclared_calls": 2, + "undeclared_writes": 13 + }, + "warnings": [] +} diff --git a/verify/results/compare/recap-b3-compare-t1-5.md b/verify/results/compare/recap-b3-compare-t1-5.md new file mode 100644 index 0000000..b4e48d8 --- /dev/null +++ b/verify/results/compare/recap-b3-compare-t1-5.md @@ -0,0 +1,47 @@ +## tracecmp report: recap-b3-compare5.jsonl + +- build: recap-7584bad-20260908T0615Z started: 2026-09-08T06:28:40Z inline_max: 256 +- calls: 15 compared: 15 diverged: 3 invalid records: 0 warnings: 0 +- coverage: 15 guarded call(s), 13 undeclared write(s) in 2 call(s); 0 hook(s) unstated, 0 contradicted + +| hook | calls | modes | compared | diverged | errors | +|---|---|---|---|---|---| +| Game::TechTree::ProcessResearch | 15 | compare:15 | 15 | 3 | 0 | + +### coverage + +| hook | verdict | compared regions | guards | undeclared writes | unmodelled | +|---|---|---|---|---|---| +| Game::TechTree::ProcessResearch | partial | events, node[0], node[105], node[106], node[107], node[108], +270 | player, tree_header | 13 in 2 call(s) | 5 | + +#### Game::TechTree::ProcessResearch — not checked by this run +- (high) posts EVENT_RESEARCH_OVERBUDGET on the owner's EventStorage in the same branch that sets node.flag = 2 — the message text is composed from the tech name, so ours cannot synthesise it; it would have to be posted through the game's own event API. This is the defect that made a clean compare false: replace mode's autosave differed from the oracle by exactly this one event [region:events (EvNxID now diverges instead of passing silently)] +- (medium) posts EVENT_TECHS_UNLOCKED for nodes that became available this turn — the trailing unlock loop makes no draw and writes no node, but it does build a names list and post an event [region:events] +- (high) TechTree::SetResearched on completion: the turn/order stamps, the child unlock cascade, the recursive research of zero-cost children, and the owner's OnTechResearched callback — its own milestone (B2); the callback writes live player state that compare mode must not touch, and it consumes one extra RNG word [guard:player, guard:tree_header] +- (medium) bumps the tree's completion-order counter (TechTree+0x20) — part of SetResearched; the per-node `order` word is compared but the counter it comes from was not a region [guard:tree_header] +- (low) writes a completion line to the game log — log text is not simulation state +- guard hits in compare mode: player+0x10c:3, player+0x110:3, player+0x114:3, player+0x124:3, player+0x274:3, player+0x278:3, player+0x27c:3, player+0x294:4, tree_header+0x20:1, player+0x130:3, player+0x278:1 + +### Game::TechTree::ProcessResearch: first 3 of 3 divergent call(s) +- call_id 0 (recap-b3-compare5.jsonl:2) + side.events.after.v.next_id [exact] orig={"t":"i32","v":4} ours={"t":"i32","v":3} +- call_id 3 (recap-b3-compare5.jsonl:5) + side.events.after.v.next_id [exact] orig={"t":"i32","v":7} ours={"t":"i32","v":5} + side.node[132].after.v.cost_rp [exact] orig={"t":"i32","v":10000} ours={"t":"i32","v":2147483647} + side.node[132].after.v.state [exact] orig={"t":"i32","v":2} ours={"t":"i32","v":0} + side.node[132].after.v.turn_available [exact] orig={"t":"i32","v":4} ours={"t":"i32","v":-1} + side.node[136].after.v.cost_rp [exact] orig={"t":"i32","v":16000} ours={"t":"i32","v":2147483647} + side.node[136].after.v.state [exact] orig={"t":"i32","v":2} ours={"t":"i32","v":0} + side.node[136].after.v.turn_available [exact] orig={"t":"i32","v":4} ours={"t":"i32","v":-1} + side.node[142].after.v.cost_rp [exact] orig={"t":"i32","v":8000} ours={"t":"i32","v":2147483647} + … 4 more +- call_id 9 (recap-b3-compare5.jsonl:11) + side.events.after.v.next_id [exact] orig={"t":"i32","v":12} ours={"t":"i32","v":10} + side.node[12].after.v.cost_rp [exact] orig={"t":"i32","v":35000} ours={"t":"i32","v":2147483647} + side.node[12].after.v.state [exact] orig={"t":"i32","v":2} ours={"t":"i32","v":0} + side.node[12].after.v.turn_available [exact] orig={"t":"i32","v":6} ours={"t":"i32","v":-1} + side.node[18].after.v.cost_rp [exact] orig={"t":"i32","v":4000} ours={"t":"i32","v":2147483647} + side.node[18].after.v.state [exact] orig={"t":"i32","v":2} ours={"t":"i32","v":0} + side.node[18].after.v.turn_available [exact] orig={"t":"i32","v":6} ours={"t":"i32","v":-1} + side.node[3].after.v.cost_rp [exact] orig={"t":"i32","v":13000} ours={"t":"i32","v":2147483647} + … 4 more diff --git a/verify/results/compare/recap-b3-compare-t1.json b/verify/results/compare/recap-b3-compare-t1.json new file mode 100644 index 0000000..840d5c0 --- /dev/null +++ b/verify/results/compare/recap-b3-compare-t1.json @@ -0,0 +1,772 @@ +{ + "coverage_contradicted": [], + "coverage_unstated": [], + "format": 1, + "hooks": { + "Game::TechTree::ProcessResearch": { + "calls": 3, + "compared": 3, + "coverage": { + "checked_regions": [ + "events", + "node[0]", + "node[105]", + "node[106]", + "node[107]", + "node[108]", + "node[109]", + "node[10]", + "node[110]", + "node[111]", + "node[112]", + "node[113]", + "node[114]", + "node[115]", + "node[116]", + "node[117]", + "node[118]", + "node[119]", + "node[11]", + "node[120]", + "node[121]", + "node[122]", + "node[123]", + "node[124]", + "node[125]", + "node[126]", + "node[127]", + "node[128]", + "node[129]", + "node[12]", + "node[130]", + "node[131]", + "node[132]", + "node[133]", + "node[134]", + "node[135]", + "node[136]", + "node[137]", + "node[138]", + "node[139]", + "node[13]", + "node[140]", + "node[141]", + "node[142]", + "node[143]", + "node[144]", + "node[145]", + "node[146]", + "node[147]", + "node[148]", + "node[149]", + "node[14]", + "node[151]", + "node[152]", + "node[153]", + "node[154]", + "node[155]", + "node[156]", + "node[157]", + "node[158]", + "node[159]", + "node[15]", + "node[160]", + "node[161]", + "node[162]", + "node[163]", + "node[164]", + "node[165]", + "node[166]", + "node[167]", + "node[168]", + "node[169]", + "node[16]", + "node[170]", + "node[171]", + "node[172]", + "node[173]", + "node[174]", + "node[175]", + "node[177]", + "node[178]", + "node[179]", + "node[17]", + "node[180]", + "node[181]", + "node[182]", + "node[183]", + "node[184]", + "node[185]", + "node[186]", + "node[187]", + "node[188]", + "node[189]", + "node[18]", + "node[190]", + "node[191]", + "node[192]", + "node[193]", + "node[194]", + "node[195]", + "node[196]", + "node[197]", + "node[198]", + "node[199]", + "node[19]", + "node[1]", + "node[200]", + "node[201]", + "node[202]", + "node[203]", + "node[204]", + "node[205]", + "node[206]", + "node[207]", + "node[208]", + "node[209]", + "node[20]", + "node[210]", + "node[211]", + "node[212]", + "node[213]", + "node[214]", + "node[215]", + "node[216]", + "node[217]", + "node[218]", + "node[219]", + "node[21]", + "node[220]", + "node[221]", + "node[222]", + "node[223]", + "node[224]", + "node[225]", + "node[226]", + "node[227]", + "node[228]", + "node[229]", + "node[22]", + "node[230]", + "node[231]", + "node[232]", + "node[233]", + "node[234]", + "node[235]", + "node[236]", + "node[237]", + "node[238]", + "node[239]", + "node[23]", + "node[240]", + "node[241]", + "node[242]", + "node[243]", + "node[244]", + "node[245]", + "node[246]", + "node[247]", + "node[248]", + "node[249]", + "node[24]", + "node[250]", + "node[251]", + "node[252]", + "node[253]", + "node[254]", + "node[255]", + "node[256]", + "node[257]", + "node[258]", + "node[259]", + "node[25]", + "node[260]", + "node[261]", + "node[262]", + "node[263]", + "node[264]", + "node[265]", + "node[266]", + "node[267]", + "node[268]", + "node[269]", + "node[26]", + "node[270]", + "node[271]", + "node[272]", + "node[273]", + "node[274]", + "node[275]", + "node[276]", + "node[277]", + "node[278]", + "node[279]", + "node[27]", + "node[280]", + "node[281]", + "node[282]", + "node[283]", + "node[284]", + "node[285]", + "node[286]", + "node[287]", + "node[288]", + "node[289]", + "node[28]", + "node[290]", + "node[291]", + "node[292]", + "node[29]", + "node[2]", + "node[30]", + "node[31]", + "node[32]", + "node[33]", + "node[34]", + "node[35]", + "node[36]", + "node[37]", + "node[38]", + "node[39]", + "node[3]", + "node[40]", + "node[41]", + "node[42]", + "node[43]", + "node[44]", + "node[45]", + "node[46]", + "node[47]", + "node[48]", + "node[49]", + "node[4]", + "node[50]", + "node[51]", + "node[52]", + "node[53]", + "node[54]", + "node[55]", + "node[56]", + "node[57]", + "node[58]", + "node[5]", + "node[60]", + "node[61]", + "node[62]", + "node[63]", + "node[64]", + "node[65]", + "node[66]", + "node[67]", + "node[68]", + "node[69]", + "node[6]", + "node[70]", + "node[72]", + "node[74]", + "node[77]", + "node[78]", + "node[7]", + "node[80]", + "node[81]", + "node[85]", + "node[86]", + "node[87]", + "node[88]", + "node[89]", + "node[8]", + "node[90]", + "node[91]", + "node[92]", + "node[94]", + "node[98]", + "node[99]", + "node[9]", + "overbudget", + "rng" + ], + "guarded_calls": 3, + "guards": [ + "player", + "tree_header" + ], + "spans": { + "compare": [] + }, + "state": "partial", + "undeclared_calls": 0, + "undeclared_writes": 0, + "unmodelled": [ + { + "mitigation": "region:events (EvNxID now diverges instead of passing silently)", + "risk": "high", + "what": "posts EVENT_RESEARCH_OVERBUDGET on the owner's EventStorage in the same branch that sets node.flag = 2", + "why": "the message text is composed from the tech name, so ours cannot synthesise it; it would have to be posted through the game's own event API. This is the defect that made a clean compare false: replace mode's autosave differed from the oracle by exactly this one event" + }, + { + "mitigation": "region:events", + "risk": "medium", + "what": "posts EVENT_TECHS_UNLOCKED for nodes that became available this turn", + "why": "the trailing unlock loop makes no draw and writes no node, but it does build a names list and post an event" + }, + { + "mitigation": "guard:player, guard:tree_header", + "risk": "high", + "what": "TechTree::SetResearched on completion: the turn/order stamps, the child unlock cascade, the recursive research of zero-cost children, and the owner's OnTechResearched callback", + "why": "its own milestone (B2); the callback writes live player state that compare mode must not touch, and it consumes one extra RNG word" + }, + { + "mitigation": "guard:tree_header", + "risk": "medium", + "what": "bumps the tree's completion-order counter (TechTree+0x20)", + "why": "part of SetResearched; the per-node `order` word is compared but the counter it comes from was not a region" + }, + { + "mitigation": "", + "risk": "low", + "what": "writes a completion line to the game log", + "why": "log text is not simulation state" + } + ], + "verdict": "partial", + "why": "" + }, + "diffs": [ + { + "call_id": 0, + "diff": [ + { + "orig": { + "t": "i32", + "v": 4 + }, + "ours": { + "t": "i32", + "v": 3 + }, + "path": "side.events.after.v.next_id", + "why": "exact" + } + ], + "file": "recap-b3-compare.jsonl", + "line": 2 + } + ], + "diverged": 1, + "diverged_call_ids": [ + 0 + ], + "errors": 0, + "modes": { + "compare": 3 + } + } + }, + "inputs": [ + "/tmp/claude-1000/-home-alex/ec8e34f8-af37-4ef2-a309-ed6a15293097/scratchpad/recap-b3-compare.jsonl" + ], + "invalid": [], + "kind": "report", + "meta": [ + { + "build": "recap-7584bad-20260908T0615Z", + "exe_sha256": "970b7de729956a53094c7eb98aba4270aee98e2fed5daf0d39e290013c90c841", + "format": 1, + "hooks": { + "Game::SectionDictionary::SectionDictionary": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "see docs/M2.md; compare mode for this hook is not safe to run", + "risk": "high", + "what": "LoadSection registers each section with the string table and the live TechTree, and may append to the dictionary's own vector", + "why": "M3 scope; ours delegates to the game's LoadSection after the original has already built all 885 definitions, so the second pass registers duplicates -- the leading hypothesis for this hook's compare-mode crash" + }, + { + "mitigation": "", + "risk": "medium", + "what": "post-load validation pass over every definition's @-token against the string table", + "why": "runs after the loop and touches no declared region" + }, + { + "mitigation": "", + "risk": "low", + "what": "allocates 885 SectionDef objects (0x3d8 bytes each) on the game heap", + "why": "they do not exist at hook entry; compared by index/species/id/token" + }, + { + "mitigation": "guard:dict", + "risk": "low", + "what": "the word at dictionary+0x14", + "why": "not modelled; emitted as an ignored pointer" + }, + { + "mitigation": "", + "risk": "medium", + "what": "the before-snapshot of the object is uninitialised heap", + "why": "the hook is on the constructor, so `before` is meaningless and only `after` carries information" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::ServerPlayer::ComputeBudget": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "declared input boundary; see budget_inputs.h", + "risk": "high", + "what": "slots 1, 2, 3, 4, 7 and 11 are produced by callees this milestone does not model (per-system output, trade, ship-carried population, a second manager, the build-queue spend)", + "why": "they are copied out of the original's own output and back into the same slots, so they match BY CONSTRUCTION and prove nothing" + }, + { + "mitigation": "guard:budget_object does not reach the ships; unverified", + "risk": "high", + "what": "ServerSystem::ComputeOutput repairs damaged ships in orbit", + "why": "replace mode runs the original a second time on a scratch Budget to harvest the six unmodelled slots, so that repair happens TWICE per turn in replace mode and nothing in the trace would show it" + }, + { + "mitigation": "", + "risk": "medium", + "what": "the difficulty-mods row from StrategyServer::GetDifficultyMods", + "why": "not reachable from a ServerPlayer, so the two relevant entries are fitted constants measured from the B1 trace rather than snapshotted inputs" + }, + { + "mitigation": "", + "risk": "low", + "what": "the research-allocation vector's heap block", + "why": "only the element count is compared; the three words are heap pointers the default policy ignores" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::ServerPlayer::OnTechResearched": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "guard:player (EventStorage is inline at ServerPlayer+0x29c)", + "risk": "high", + "what": "posts EVENT_RESEARCH_COMPLETE / _UNDERBUDGET / _TEMPERANCE on the owner's EventStorage when !silent", + "why": "the same class of write as B3's defect, and this hook has no replace-mode oracle that could catch it: gotcha 4 in docs/B2.md says a changed save hash on a completion turn is expected and therefore not a finding" + }, + { + "mitigation": "", + "risk": "high", + "what": "writes every owned system's AI flag (CCC_AIVrus / CCC_AISlv), re-evaluates the arcology civilian cap, cures addiction and clears plague across systems AND ships", + "why": "writes through pointers to other objects; compare mode must not touch live state, and no region reaches them" + }, + { + "mitigation": "this is the extra draw B3 observed on a completion", + "risk": "high", + "what": "the pending plague-cure roll (ServerPlayer::RollResearchEvent)", + "why": "it draws exactly one word from the strategic generator unconditionally; running it in compare mode would consume real randomness. The two words it guards are still cleared and the record says whether it would have fired" + }, + { + "mitigation": "", + "risk": "medium", + "what": "TechTree::SetResearched for the Zuul boarding-pod grant", + "why": "it would mutate the live tree, and it recurses" + }, + { + "mitigation": "region:node_bore, declared only when the block already exists", + "risk": "medium", + "what": "allocates or frees the node-bore block at ServerPlayer+0x308", + "why": "ours has no allocator the game's runtime could free, so replace mode calls the game's own updater -- which means replace mode never exercises our node-bore selection at all" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::ServerSystem::ProcessTurn": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "guard:system", + "risk": "high", + "what": "the addiction sweep raises MoraleEvents, which are constructed and appended to the system's capped morale history", + "why": "the same class of write as B3's defect. sim::ProcessColonyTurn does compute the morale events (ColonyTurnResult), but the hook never emits them: DescribeMoraleEvents is dead code, so they are neither compared nor logged" + }, + { + "mitigation": "guard:system covers the system object only, not the other objects", + "risk": "high", + "what": "every callee: the plague pass, imperial and civilian growth, the resource debit, in-orbit refuel, slaves, rebellion and the build queue", + "why": "declared input boundary -- ProcessTurn is a dispatcher and only the words it writes itself are modelled. The callees raise EVENT_SLAVES_DEAD, EVENT_SYSTEM_REBELLION_CONTINUES, the plague events and SEBuildCompleted, create ships and bump per-player ShipRecords counters" + }, + { + "mitigation": "", + "risk": "medium", + "what": "ApplyInfraBonus / ApplyPopBonus read the owner's home-system id, and the build queue writes the owning ServerPlayer", + "why": "writes through a pointer to another object; no region reaches the player" + }, + { + "mitigation": "", + "risk": "low", + "what": "ProcessRebellion is the pass's only RNG consumer and its draw count is data-dependent", + "why": "the generator IS a declared region, so a moved post-state is visible and names the system whose rebellion fired -- it is reported, not modelled" + }, + { + "mitigation": "", + "risk": "medium", + "what": "replace mode is refused for this hook", + "why": "our side models the dispatcher's own writes and none of the callees, so a replace run would silently skip a colony's whole turn. There is therefore no oracle layer behind the compare for this hook" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::StrategyServer::MoveFleet": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "guard:fleet sees the fleet's own words; the event and the system do not", + "risk": "high", + "what": "on arrival: dispatches SEFleetArrived and runs one of three arrival handlers by destination kind (enter system / join fleet / stop at point)", + "why": "declared input boundary -- an arriving call is expected to differ in all of it, and none of it is declared, so the compare says nothing about arrivals" + }, + { + "mitigation": "", + "risk": "high", + "what": "on departure: cancels every still-acting ship (with a log line each) and calls ServerSystem::FleetDeparts, which rewrites the system's ownership bits", + "why": "writes through pointers to ships and to the system" + }, + { + "mitigation": "", + "risk": "medium", + "what": "the tanker top-up refuels other ships in the fleet", + "why": "the per-ship range regions would show it, but ours does not model it, so a fleet with a tanker diverges for a known reason" + }, + { + "mitigation": "declared gap: docs/B4.md", + "risk": "medium", + "what": "a node-line waypoint's step comes from the stutter profile", + "why": "NodeLineStep / BuildStutterSegments are written and unit-tested but not wired in; the hook steps every waypoint type as speed x dt, so a node-line leg is knowingly mis-stepped and only its type is recorded" + }, + { + "mitigation": "", + "risk": "medium", + "what": "a missed probabilistic jump scatters the fleet in a random direction", + "why": "the direction is a second draw whose mapping is not modelled; ours leaves the position alone and reports the scatter distance, so the generator region diverges by one word on a miss" + }, + { + "mitigation": "", + "risk": "medium", + "what": "the route revalidation and the waypoint list itself", + "why": "declared input boundary; the waypoint vector is not a region" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::StrategyServer::ProcessFleetMovement": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "", + "risk": "high", + "what": "`ours` re-reads the LIVE fleet list after the original has run", + "why": "the gate-traffic total is computed by the original at the very end of the pass, so a pre-call snapshot would diverge for the wrong reason. It breaks the compare invariant that ours never touches live memory, and it makes this hook's verdict partly self-fulfilling: the input to our arithmetic is the original's own post-move state" + }, + { + "mitigation": "", + "risk": "high", + "what": "drives MoveFleet up to five times per fleet", + "why": "every undeclared effect of MoveFleet happens inside this call too; the pass schedule is recorded in the arguments but never compared" + }, + { + "mitigation": "", + "risk": "high", + "what": "writes FPdpos into every fleet and clears flags 0x2 and 0x100 on every fleet", + "why": "no region covers the fleets, only the players' gate-traffic words" + }, + { + "mitigation": "", + "risk": "high", + "what": "OnFleetArrived posts EVENT_FLEET_ARRIVED", + "why": "the same class of write as B3's defect, and there is no replace mode for this hook, so nothing behind the compare could catch it either" + }, + { + "mitigation": "", + "risk": "medium", + "what": "the original accumulates by player->index but writes back by the player's position in the server vector, into a fixed 32-int array with no bounds check", + "why": "a real latent bug in the original that our side reproduces only while index == position; the reference save never separates them" + }, + { + "mitigation": "", + "risk": "medium", + "what": "PassSchedule() is never called by the hook, and FleetSummary::targetFleetId / relation are never filled", + "why": "the header claims ours predicts the call order for a trace to check; that prediction is not actually emitted" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::TechTree::ProcessResearch": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "region:events (EvNxID now diverges instead of passing silently)", + "risk": "high", + "what": "posts EVENT_RESEARCH_OVERBUDGET on the owner's EventStorage in the same branch that sets node.flag = 2", + "why": "the message text is composed from the tech name, so ours cannot synthesise it; it would have to be posted through the game's own event API. This is the defect that made a clean compare false: replace mode's autosave differed from the oracle by exactly this one event" + }, + { + "mitigation": "region:events", + "risk": "medium", + "what": "posts EVENT_TECHS_UNLOCKED for nodes that became available this turn", + "why": "the trailing unlock loop makes no draw and writes no node, but it does build a names list and post an event" + }, + { + "mitigation": "guard:player, guard:tree_header", + "risk": "high", + "what": "TechTree::SetResearched on completion: the turn/order stamps, the child unlock cascade, the recursive research of zero-cost children, and the owner's OnTechResearched callback", + "why": "its own milestone (B2); the callback writes live player state that compare mode must not touch, and it consumes one extra RNG word" + }, + { + "mitigation": "guard:tree_header", + "risk": "medium", + "what": "bumps the tree's completion-order counter (TechTree+0x20)", + "why": "part of SetResearched; the per-node `order` word is compared but the counter it comes from was not a region" + }, + { + "mitigation": "", + "risk": "low", + "what": "writes a completion line to the game log", + "why": "log text is not simulation state" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::WeaponDictionary::Init": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "suspected cause of the sibling section hook's compare crash (docs/M2.md)", + "risk": "high", + "what": "LoadWeapon -> WeaponDef::ParseScript registers each weapon's name with the string table and resolves `requires` against the live TechTree", + "why": "per-file parsing is M3 scope; ours delegates to the game's own LoadWeapon, so a compare run performs the registration a SECOND time and neither the string table nor the tech tree is a declared region" + }, + { + "mitigation": "", + "risk": "low", + "what": "allocates 123 WeaponDef objects (0x278 bytes each) on the game heap", + "why": "the definitions do not exist when the hook is entered, so they cannot be a before-snapshot; the dictionary region compares them by id/name/path" + }, + { + "mitigation": "guard:dict", + "risk": "low", + "what": "the word at dictionary+0x14", + "why": "not modelled; emitted as an opaque pointer, which the default policy ignores -- a change is visible in a trace but never a divergence" + }, + { + "mitigation": "", + "risk": "low", + "what": "writes lines to the game log for a missing manifest", + "why": "log text is not simulation state" + }, + { + "mitigation": "", + "risk": "low", + "what": "std::sort tie order for equal weapon names", + "why": "msvc_sort.h replays MSVC 2010's introsort, but the shipped data has no tied names, so the tie rule is unexercised rather than verified" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Mars::GlobalConsts::LoadFile": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "LoadAll's post-state would have to be hooked to see it", + "risk": "medium", + "what": "erases each consumed key from the caller's std::map", + "why": "the map is a LoadAll temporary; declaring a red-black tree as a region is not possible before the call. First-occurrence-wins is reproduced in game::config::apply instead, so the *effect* is modelled, the container is not" + }, + { + "mitigation": "", + "risk": "low", + "what": "writes three kinds of line to the game log (unrecognised key, applied key, expected-but-not-found)", + "why": "log text is not part of the simulation state" + }, + { + "mitigation": "", + "risk": "low", + "what": "opens the file through the VFS and allocates/releases a refcounted buffer", + "why": "ours performs the same two calls, so allocation behaviour matches by construction rather than by comparison" + }, + { + "mitigation": "", + "risk": "low", + "what": "String slots assign through the engine's own std::string, leaking one heap block per long string in compare mode", + "why": "start-up only; documented in docs/M1.md" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Shim::SelfTest::Fill": { + "coverage": { + "state": "complete", + "unmodelled": [], + "why": "Fill writes buf[0..n) and nothing else; the whole range is a declared region" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + } + }, + "inline_max": 256, + "started": "2026-09-08T06:28:40Z" + } + ], + "totals": { + "calls": 3, + "compared": 3, + "coverage_contradicted": 0, + "coverage_unstated": 0, + "diverged": 1, + "guarded_calls": 3, + "invalid_records": 0, + "undeclared_calls": 0, + "undeclared_writes": 0 + }, + "warnings": [] +} diff --git a/verify/results/compare/recap-b3-compare-t1.md b/verify/results/compare/recap-b3-compare-t1.md new file mode 100644 index 0000000..6a38158 --- /dev/null +++ b/verify/results/compare/recap-b3-compare-t1.md @@ -0,0 +1,26 @@ +## tracecmp report: recap-b3-compare.jsonl + +- build: recap-7584bad-20260908T0615Z started: 2026-09-08T06:28:40Z inline_max: 256 +- calls: 3 compared: 3 diverged: 1 invalid records: 0 warnings: 0 +- coverage: 3 guarded call(s), 0 undeclared write(s) in 0 call(s); 0 hook(s) unstated, 0 contradicted + +| hook | calls | modes | compared | diverged | errors | +|---|---|---|---|---|---| +| Game::TechTree::ProcessResearch | 3 | compare:3 | 3 | 1 | 0 | + +### coverage + +| hook | verdict | compared regions | guards | undeclared writes | unmodelled | +|---|---|---|---|---|---| +| Game::TechTree::ProcessResearch | partial | events, node[0], node[105], node[106], node[107], node[108], +270 | player, tree_header | 0 | 5 | + +#### Game::TechTree::ProcessResearch — not checked by this run +- (high) posts EVENT_RESEARCH_OVERBUDGET on the owner's EventStorage in the same branch that sets node.flag = 2 — the message text is composed from the tech name, so ours cannot synthesise it; it would have to be posted through the game's own event API. This is the defect that made a clean compare false: replace mode's autosave differed from the oracle by exactly this one event [region:events (EvNxID now diverges instead of passing silently)] +- (medium) posts EVENT_TECHS_UNLOCKED for nodes that became available this turn — the trailing unlock loop makes no draw and writes no node, but it does build a names list and post an event [region:events] +- (high) TechTree::SetResearched on completion: the turn/order stamps, the child unlock cascade, the recursive research of zero-cost children, and the owner's OnTechResearched callback — its own milestone (B2); the callback writes live player state that compare mode must not touch, and it consumes one extra RNG word [guard:player, guard:tree_header] +- (medium) bumps the tree's completion-order counter (TechTree+0x20) — part of SetResearched; the per-node `order` word is compared but the counter it comes from was not a region [guard:tree_header] +- (low) writes a completion line to the game log — log text is not simulation state + +### Game::TechTree::ProcessResearch: first 1 of 1 divergent call(s) +- call_id 0 (recap-b3-compare.jsonl:2) + side.events.after.v.next_id [exact] orig={"t":"i32","v":4} ours={"t":"i32","v":3} diff --git a/verify/results/compare/recap-golden-trace.json b/verify/results/compare/recap-golden-trace.json new file mode 100644 index 0000000..33fa2ea --- /dev/null +++ b/verify/results/compare/recap-golden-trace.json @@ -0,0 +1,964 @@ +{ + "coverage_contradicted": [], + "coverage_unstated": [], + "format": 1, + "hooks": { + "Game::ServerPlayer::ComputeBudget": { + "calls": 3592, + "compared": 0, + "coverage": { + "checked_regions": [ + "budget", + "inputs", + "research_alloc" + ], + "guarded_calls": 3592, + "guards": [ + "budget_object" + ], + "spans": { + "trace": [] + }, + "state": "partial", + "undeclared_calls": 0, + "undeclared_writes": 0, + "unmodelled": [ + { + "mitigation": "declared input boundary; see budget_inputs.h", + "risk": "high", + "what": "slots 1, 2, 3, 4, 7 and 11 are produced by callees this milestone does not model (per-system output, trade, ship-carried population, a second manager, the build-queue spend)", + "why": "they are copied out of the original's own output and back into the same slots, so they match BY CONSTRUCTION and prove nothing" + }, + { + "mitigation": "guard:budget_object does not reach the ships; unverified", + "risk": "high", + "what": "ServerSystem::ComputeOutput repairs damaged ships in orbit", + "why": "replace mode runs the original a second time on a scratch Budget to harvest the six unmodelled slots, so that repair happens TWICE per turn in replace mode and nothing in the trace would show it" + }, + { + "mitigation": "", + "risk": "medium", + "what": "the difficulty-mods row from StrategyServer::GetDifficultyMods", + "why": "not reachable from a ServerPlayer, so the two relevant entries are fitted constants measured from the B1 trace rather than snapshotted inputs" + }, + { + "mitigation": "", + "risk": "low", + "what": "the research-allocation vector's heap block", + "why": "only the element count is compared; the three words are heap pointers the default policy ignores" + } + ], + "verdict": "partial", + "why": "" + }, + "diffs": [], + "diverged": 0, + "diverged_call_ids": [], + "errors": 0, + "modes": { + "trace": 3592 + } + }, + "Game::ServerSystem::ProcessTurn": { + "calls": 28, + "compared": 0, + "coverage": { + "checked_regions": [ + "bats2", + "bats_mask", + "haltv", + "ibon", + "infra", + "inputs", + "ntdev", + "pbon", + "rcex", + "rcex_mask", + "rng", + "tres" + ], + "guarded_calls": 28, + "guards": [ + "system" + ], + "spans": { + "trace": [ + "system+0x1a4:12", + "system+0xd8:1", + "system+0x170:1", + "system+0x238:4" + ] + }, + "state": "partial", + "undeclared_calls": 3, + "undeclared_writes": 6, + "unmodelled": [ + { + "mitigation": "guard:system", + "risk": "high", + "what": "the addiction sweep raises MoraleEvents, which are constructed and appended to the system's capped morale history", + "why": "the same class of write as B3's defect. sim::ProcessColonyTurn does compute the morale events (ColonyTurnResult), but the hook never emits them: DescribeMoraleEvents is dead code, so they are neither compared nor logged" + }, + { + "mitigation": "guard:system covers the system object only, not the other objects", + "risk": "high", + "what": "every callee: the plague pass, imperial and civilian growth, the resource debit, in-orbit refuel, slaves, rebellion and the build queue", + "why": "declared input boundary -- ProcessTurn is a dispatcher and only the words it writes itself are modelled. The callees raise EVENT_SLAVES_DEAD, EVENT_SYSTEM_REBELLION_CONTINUES, the plague events and SEBuildCompleted, create ships and bump per-player ShipRecords counters" + }, + { + "mitigation": "", + "risk": "medium", + "what": "ApplyInfraBonus / ApplyPopBonus read the owner's home-system id, and the build queue writes the owning ServerPlayer", + "why": "writes through a pointer to another object; no region reaches the player" + }, + { + "mitigation": "", + "risk": "low", + "what": "ProcessRebellion is the pass's only RNG consumer and its draw count is data-dependent", + "why": "the generator IS a declared region, so a moved post-state is visible and names the system whose rebellion fired -- it is reported, not modelled" + }, + { + "mitigation": "", + "risk": "medium", + "what": "replace mode is refused for this hook", + "why": "our side models the dispatcher's own writes and none of the callees, so a replace run would silently skip a colony's whole turn. There is therefore no oracle layer behind the compare for this hook" + } + ], + "verdict": "partial", + "why": "" + }, + "diffs": [], + "diverged": 0, + "diverged_call_ids": [], + "errors": 0, + "modes": { + "trace": 28 + } + }, + "Game::StrategyServer::MoveFleet": { + "calls": 7, + "compared": 0, + "coverage": { + "checked_regions": [ + "pos", + "prev_pos", + "rng", + "ship[0].range", + "ship[1].range", + "ship[2].range", + "ship[3].range", + "ship[4].range", + "ship[5].range", + "ship[6].range", + "ship[7].range", + "ship[8].range", + "ship[9].range" + ], + "guarded_calls": 7, + "guards": [ + "fleet" + ], + "spans": { + "trace": [ + "fleet+0xa0:4", + "fleet+0xdc:1", + "fleet+0x10c:1" + ] + }, + "state": "partial", + "undeclared_calls": 1, + "undeclared_writes": 3, + "unmodelled": [ + { + "mitigation": "guard:fleet sees the fleet's own words; the event and the system do not", + "risk": "high", + "what": "on arrival: dispatches SEFleetArrived and runs one of three arrival handlers by destination kind (enter system / join fleet / stop at point)", + "why": "declared input boundary -- an arriving call is expected to differ in all of it, and none of it is declared, so the compare says nothing about arrivals" + }, + { + "mitigation": "", + "risk": "high", + "what": "on departure: cancels every still-acting ship (with a log line each) and calls ServerSystem::FleetDeparts, which rewrites the system's ownership bits", + "why": "writes through pointers to ships and to the system" + }, + { + "mitigation": "", + "risk": "medium", + "what": "the tanker top-up refuels other ships in the fleet", + "why": "the per-ship range regions would show it, but ours does not model it, so a fleet with a tanker diverges for a known reason" + }, + { + "mitigation": "declared gap: docs/B4.md", + "risk": "medium", + "what": "a node-line waypoint's step comes from the stutter profile", + "why": "NodeLineStep / BuildStutterSegments are written and unit-tested but not wired in; the hook steps every waypoint type as speed x dt, so a node-line leg is knowingly mis-stepped and only its type is recorded" + }, + { + "mitigation": "", + "risk": "medium", + "what": "a missed probabilistic jump scatters the fleet in a random direction", + "why": "the direction is a second draw whose mapping is not modelled; ours leaves the position alone and reports the scatter distance, so the generator region diverges by one word on a miss" + }, + { + "mitigation": "", + "risk": "medium", + "what": "the route revalidation and the waypoint list itself", + "why": "declared input boundary; the waypoint vector is not a region" + } + ], + "verdict": "partial", + "why": "" + }, + "diffs": [], + "diverged": 0, + "diverged_call_ids": [], + "errors": 0, + "modes": { + "trace": 7 + } + }, + "Game::TechTree::ProcessResearch": { + "calls": 3, + "compared": 0, + "coverage": { + "checked_regions": [ + "events", + "node[0]", + "node[105]", + "node[106]", + "node[107]", + "node[108]", + "node[109]", + "node[10]", + "node[110]", + "node[111]", + "node[112]", + "node[113]", + "node[114]", + "node[115]", + "node[116]", + "node[117]", + "node[118]", + "node[119]", + "node[11]", + "node[120]", + "node[121]", + "node[122]", + "node[123]", + "node[124]", + "node[125]", + "node[126]", + "node[127]", + "node[128]", + "node[129]", + "node[12]", + "node[130]", + "node[131]", + "node[132]", + "node[133]", + "node[134]", + "node[135]", + "node[136]", + "node[137]", + "node[138]", + "node[139]", + "node[13]", + "node[140]", + "node[141]", + "node[142]", + "node[143]", + "node[144]", + "node[145]", + "node[146]", + "node[147]", + "node[148]", + "node[149]", + "node[14]", + "node[151]", + "node[152]", + "node[153]", + "node[154]", + "node[155]", + "node[156]", + "node[157]", + "node[158]", + "node[159]", + "node[15]", + "node[160]", + "node[161]", + "node[162]", + "node[163]", + "node[164]", + "node[165]", + "node[166]", + "node[167]", + "node[168]", + "node[169]", + "node[16]", + "node[170]", + "node[171]", + "node[172]", + "node[173]", + "node[174]", + "node[175]", + "node[177]", + "node[178]", + "node[179]", + "node[17]", + "node[180]", + "node[181]", + "node[182]", + "node[183]", + "node[184]", + "node[185]", + "node[186]", + "node[187]", + "node[188]", + "node[189]", + "node[18]", + "node[190]", + "node[191]", + "node[192]", + "node[193]", + "node[194]", + "node[195]", + "node[196]", + "node[197]", + "node[198]", + "node[199]", + "node[19]", + "node[1]", + "node[200]", + "node[201]", + "node[202]", + "node[203]", + "node[204]", + "node[205]", + "node[206]", + "node[207]", + "node[208]", + "node[209]", + "node[20]", + "node[210]", + "node[211]", + "node[212]", + "node[213]", + "node[214]", + "node[215]", + "node[216]", + "node[217]", + "node[218]", + "node[219]", + "node[21]", + "node[220]", + "node[221]", + "node[222]", + "node[223]", + "node[224]", + "node[225]", + "node[226]", + "node[227]", + "node[228]", + "node[229]", + "node[22]", + "node[230]", + "node[231]", + "node[232]", + "node[233]", + "node[234]", + "node[235]", + "node[236]", + "node[237]", + "node[238]", + "node[239]", + "node[23]", + "node[240]", + "node[241]", + "node[242]", + "node[243]", + "node[244]", + "node[245]", + "node[246]", + "node[247]", + "node[248]", + "node[249]", + "node[24]", + "node[250]", + "node[251]", + "node[252]", + "node[253]", + "node[254]", + "node[255]", + "node[256]", + "node[257]", + "node[258]", + "node[259]", + "node[25]", + "node[260]", + "node[261]", + "node[262]", + "node[263]", + "node[264]", + "node[265]", + "node[266]", + "node[267]", + "node[268]", + "node[269]", + "node[26]", + "node[270]", + "node[271]", + "node[272]", + "node[273]", + "node[274]", + "node[275]", + "node[276]", + "node[277]", + "node[278]", + "node[279]", + "node[27]", + "node[280]", + "node[281]", + "node[282]", + "node[283]", + "node[284]", + "node[285]", + "node[286]", + "node[287]", + "node[288]", + "node[289]", + "node[28]", + "node[290]", + "node[291]", + "node[292]", + "node[29]", + "node[2]", + "node[30]", + "node[31]", + "node[32]", + "node[33]", + "node[34]", + "node[35]", + "node[36]", + "node[37]", + "node[38]", + "node[39]", + "node[3]", + "node[40]", + "node[41]", + "node[42]", + "node[43]", + "node[44]", + "node[45]", + "node[46]", + "node[47]", + "node[48]", + "node[49]", + "node[4]", + "node[50]", + "node[51]", + "node[52]", + "node[53]", + "node[54]", + "node[55]", + "node[56]", + "node[57]", + "node[58]", + "node[5]", + "node[60]", + "node[61]", + "node[62]", + "node[63]", + "node[64]", + "node[65]", + "node[66]", + "node[67]", + "node[68]", + "node[69]", + "node[6]", + "node[70]", + "node[72]", + "node[74]", + "node[77]", + "node[78]", + "node[7]", + "node[80]", + "node[81]", + "node[85]", + "node[86]", + "node[87]", + "node[88]", + "node[89]", + "node[8]", + "node[90]", + "node[91]", + "node[92]", + "node[94]", + "node[98]", + "node[99]", + "node[9]", + "overbudget", + "rng" + ], + "guarded_calls": 3, + "guards": [ + "player", + "tree_header" + ], + "spans": { + "trace": [] + }, + "state": "partial", + "undeclared_calls": 0, + "undeclared_writes": 0, + "unmodelled": [ + { + "mitigation": "region:events (EvNxID now diverges instead of passing silently)", + "risk": "high", + "what": "posts EVENT_RESEARCH_OVERBUDGET on the owner's EventStorage in the same branch that sets node.flag = 2", + "why": "the message text is composed from the tech name, so ours cannot synthesise it; it would have to be posted through the game's own event API. This is the defect that made a clean compare false: replace mode's autosave differed from the oracle by exactly this one event" + }, + { + "mitigation": "region:events", + "risk": "medium", + "what": "posts EVENT_TECHS_UNLOCKED for nodes that became available this turn", + "why": "the trailing unlock loop makes no draw and writes no node, but it does build a names list and post an event" + }, + { + "mitigation": "guard:player, guard:tree_header", + "risk": "high", + "what": "TechTree::SetResearched on completion: the turn/order stamps, the child unlock cascade, the recursive research of zero-cost children, and the owner's OnTechResearched callback", + "why": "its own milestone (B2); the callback writes live player state that compare mode must not touch, and it consumes one extra RNG word" + }, + { + "mitigation": "guard:tree_header", + "risk": "medium", + "what": "bumps the tree's completion-order counter (TechTree+0x20)", + "why": "part of SetResearched; the per-node `order` word is compared but the counter it comes from was not a region" + }, + { + "mitigation": "", + "risk": "low", + "what": "writes a completion line to the game log", + "why": "log text is not simulation state" + } + ], + "verdict": "partial", + "why": "" + }, + "diffs": [], + "diverged": 0, + "diverged_call_ids": [], + "errors": 0, + "modes": { + "trace": 3 + } + } + }, + "inputs": [ + "/tmp/claude-1000/-home-alex/ec8e34f8-af37-4ef2-a309-ed6a15293097/scratchpad/recap-trace.jsonl" + ], + "invalid": [], + "kind": "report", + "meta": [ + { + "build": "recap-7584bad-20260908T0615Z", + "exe_sha256": "970b7de729956a53094c7eb98aba4270aee98e2fed5daf0d39e290013c90c841", + "format": 1, + "hooks": { + "Game::SectionDictionary::SectionDictionary": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "see docs/M2.md; compare mode for this hook is not safe to run", + "risk": "high", + "what": "LoadSection registers each section with the string table and the live TechTree, and may append to the dictionary's own vector", + "why": "M3 scope; ours delegates to the game's LoadSection after the original has already built all 885 definitions, so the second pass registers duplicates -- the leading hypothesis for this hook's compare-mode crash" + }, + { + "mitigation": "", + "risk": "medium", + "what": "post-load validation pass over every definition's @-token against the string table", + "why": "runs after the loop and touches no declared region" + }, + { + "mitigation": "", + "risk": "low", + "what": "allocates 885 SectionDef objects (0x3d8 bytes each) on the game heap", + "why": "they do not exist at hook entry; compared by index/species/id/token" + }, + { + "mitigation": "guard:dict", + "risk": "low", + "what": "the word at dictionary+0x14", + "why": "not modelled; emitted as an ignored pointer" + }, + { + "mitigation": "", + "risk": "medium", + "what": "the before-snapshot of the object is uninitialised heap", + "why": "the hook is on the constructor, so `before` is meaningless and only `after` carries information" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::ServerPlayer::ComputeBudget": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "declared input boundary; see budget_inputs.h", + "risk": "high", + "what": "slots 1, 2, 3, 4, 7 and 11 are produced by callees this milestone does not model (per-system output, trade, ship-carried population, a second manager, the build-queue spend)", + "why": "they are copied out of the original's own output and back into the same slots, so they match BY CONSTRUCTION and prove nothing" + }, + { + "mitigation": "guard:budget_object does not reach the ships; unverified", + "risk": "high", + "what": "ServerSystem::ComputeOutput repairs damaged ships in orbit", + "why": "replace mode runs the original a second time on a scratch Budget to harvest the six unmodelled slots, so that repair happens TWICE per turn in replace mode and nothing in the trace would show it" + }, + { + "mitigation": "", + "risk": "medium", + "what": "the difficulty-mods row from StrategyServer::GetDifficultyMods", + "why": "not reachable from a ServerPlayer, so the two relevant entries are fitted constants measured from the B1 trace rather than snapshotted inputs" + }, + { + "mitigation": "", + "risk": "low", + "what": "the research-allocation vector's heap block", + "why": "only the element count is compared; the three words are heap pointers the default policy ignores" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::ServerPlayer::OnTechResearched": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "guard:player (EventStorage is inline at ServerPlayer+0x29c)", + "risk": "high", + "what": "posts EVENT_RESEARCH_COMPLETE / _UNDERBUDGET / _TEMPERANCE on the owner's EventStorage when !silent", + "why": "the same class of write as B3's defect, and this hook has no replace-mode oracle that could catch it: gotcha 4 in docs/B2.md says a changed save hash on a completion turn is expected and therefore not a finding" + }, + { + "mitigation": "", + "risk": "high", + "what": "writes every owned system's AI flag (CCC_AIVrus / CCC_AISlv), re-evaluates the arcology civilian cap, cures addiction and clears plague across systems AND ships", + "why": "writes through pointers to other objects; compare mode must not touch live state, and no region reaches them" + }, + { + "mitigation": "this is the extra draw B3 observed on a completion", + "risk": "high", + "what": "the pending plague-cure roll (ServerPlayer::RollResearchEvent)", + "why": "it draws exactly one word from the strategic generator unconditionally; running it in compare mode would consume real randomness. The two words it guards are still cleared and the record says whether it would have fired" + }, + { + "mitigation": "", + "risk": "medium", + "what": "TechTree::SetResearched for the Zuul boarding-pod grant", + "why": "it would mutate the live tree, and it recurses" + }, + { + "mitigation": "region:node_bore, declared only when the block already exists", + "risk": "medium", + "what": "allocates or frees the node-bore block at ServerPlayer+0x308", + "why": "ours has no allocator the game's runtime could free, so replace mode calls the game's own updater -- which means replace mode never exercises our node-bore selection at all" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::ServerSystem::ProcessTurn": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "guard:system", + "risk": "high", + "what": "the addiction sweep raises MoraleEvents, which are constructed and appended to the system's capped morale history", + "why": "the same class of write as B3's defect. sim::ProcessColonyTurn does compute the morale events (ColonyTurnResult), but the hook never emits them: DescribeMoraleEvents is dead code, so they are neither compared nor logged" + }, + { + "mitigation": "guard:system covers the system object only, not the other objects", + "risk": "high", + "what": "every callee: the plague pass, imperial and civilian growth, the resource debit, in-orbit refuel, slaves, rebellion and the build queue", + "why": "declared input boundary -- ProcessTurn is a dispatcher and only the words it writes itself are modelled. The callees raise EVENT_SLAVES_DEAD, EVENT_SYSTEM_REBELLION_CONTINUES, the plague events and SEBuildCompleted, create ships and bump per-player ShipRecords counters" + }, + { + "mitigation": "", + "risk": "medium", + "what": "ApplyInfraBonus / ApplyPopBonus read the owner's home-system id, and the build queue writes the owning ServerPlayer", + "why": "writes through a pointer to another object; no region reaches the player" + }, + { + "mitigation": "", + "risk": "low", + "what": "ProcessRebellion is the pass's only RNG consumer and its draw count is data-dependent", + "why": "the generator IS a declared region, so a moved post-state is visible and names the system whose rebellion fired -- it is reported, not modelled" + }, + { + "mitigation": "", + "risk": "medium", + "what": "replace mode is refused for this hook", + "why": "our side models the dispatcher's own writes and none of the callees, so a replace run would silently skip a colony's whole turn. There is therefore no oracle layer behind the compare for this hook" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::StrategyServer::MoveFleet": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "guard:fleet sees the fleet's own words; the event and the system do not", + "risk": "high", + "what": "on arrival: dispatches SEFleetArrived and runs one of three arrival handlers by destination kind (enter system / join fleet / stop at point)", + "why": "declared input boundary -- an arriving call is expected to differ in all of it, and none of it is declared, so the compare says nothing about arrivals" + }, + { + "mitigation": "", + "risk": "high", + "what": "on departure: cancels every still-acting ship (with a log line each) and calls ServerSystem::FleetDeparts, which rewrites the system's ownership bits", + "why": "writes through pointers to ships and to the system" + }, + { + "mitigation": "", + "risk": "medium", + "what": "the tanker top-up refuels other ships in the fleet", + "why": "the per-ship range regions would show it, but ours does not model it, so a fleet with a tanker diverges for a known reason" + }, + { + "mitigation": "declared gap: docs/B4.md", + "risk": "medium", + "what": "a node-line waypoint's step comes from the stutter profile", + "why": "NodeLineStep / BuildStutterSegments are written and unit-tested but not wired in; the hook steps every waypoint type as speed x dt, so a node-line leg is knowingly mis-stepped and only its type is recorded" + }, + { + "mitigation": "", + "risk": "medium", + "what": "a missed probabilistic jump scatters the fleet in a random direction", + "why": "the direction is a second draw whose mapping is not modelled; ours leaves the position alone and reports the scatter distance, so the generator region diverges by one word on a miss" + }, + { + "mitigation": "", + "risk": "medium", + "what": "the route revalidation and the waypoint list itself", + "why": "declared input boundary; the waypoint vector is not a region" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::StrategyServer::ProcessFleetMovement": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "", + "risk": "high", + "what": "`ours` re-reads the LIVE fleet list after the original has run", + "why": "the gate-traffic total is computed by the original at the very end of the pass, so a pre-call snapshot would diverge for the wrong reason. It breaks the compare invariant that ours never touches live memory, and it makes this hook's verdict partly self-fulfilling: the input to our arithmetic is the original's own post-move state" + }, + { + "mitigation": "", + "risk": "high", + "what": "drives MoveFleet up to five times per fleet", + "why": "every undeclared effect of MoveFleet happens inside this call too; the pass schedule is recorded in the arguments but never compared" + }, + { + "mitigation": "", + "risk": "high", + "what": "writes FPdpos into every fleet and clears flags 0x2 and 0x100 on every fleet", + "why": "no region covers the fleets, only the players' gate-traffic words" + }, + { + "mitigation": "", + "risk": "high", + "what": "OnFleetArrived posts EVENT_FLEET_ARRIVED", + "why": "the same class of write as B3's defect, and there is no replace mode for this hook, so nothing behind the compare could catch it either" + }, + { + "mitigation": "", + "risk": "medium", + "what": "the original accumulates by player->index but writes back by the player's position in the server vector, into a fixed 32-int array with no bounds check", + "why": "a real latent bug in the original that our side reproduces only while index == position; the reference save never separates them" + }, + { + "mitigation": "", + "risk": "medium", + "what": "PassSchedule() is never called by the hook, and FleetSummary::targetFleetId / relation are never filled", + "why": "the header claims ours predicts the call order for a trace to check; that prediction is not actually emitted" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::TechTree::ProcessResearch": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "region:events (EvNxID now diverges instead of passing silently)", + "risk": "high", + "what": "posts EVENT_RESEARCH_OVERBUDGET on the owner's EventStorage in the same branch that sets node.flag = 2", + "why": "the message text is composed from the tech name, so ours cannot synthesise it; it would have to be posted through the game's own event API. This is the defect that made a clean compare false: replace mode's autosave differed from the oracle by exactly this one event" + }, + { + "mitigation": "region:events", + "risk": "medium", + "what": "posts EVENT_TECHS_UNLOCKED for nodes that became available this turn", + "why": "the trailing unlock loop makes no draw and writes no node, but it does build a names list and post an event" + }, + { + "mitigation": "guard:player, guard:tree_header", + "risk": "high", + "what": "TechTree::SetResearched on completion: the turn/order stamps, the child unlock cascade, the recursive research of zero-cost children, and the owner's OnTechResearched callback", + "why": "its own milestone (B2); the callback writes live player state that compare mode must not touch, and it consumes one extra RNG word" + }, + { + "mitigation": "guard:tree_header", + "risk": "medium", + "what": "bumps the tree's completion-order counter (TechTree+0x20)", + "why": "part of SetResearched; the per-node `order` word is compared but the counter it comes from was not a region" + }, + { + "mitigation": "", + "risk": "low", + "what": "writes a completion line to the game log", + "why": "log text is not simulation state" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::WeaponDictionary::Init": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "suspected cause of the sibling section hook's compare crash (docs/M2.md)", + "risk": "high", + "what": "LoadWeapon -> WeaponDef::ParseScript registers each weapon's name with the string table and resolves `requires` against the live TechTree", + "why": "per-file parsing is M3 scope; ours delegates to the game's own LoadWeapon, so a compare run performs the registration a SECOND time and neither the string table nor the tech tree is a declared region" + }, + { + "mitigation": "", + "risk": "low", + "what": "allocates 123 WeaponDef objects (0x278 bytes each) on the game heap", + "why": "the definitions do not exist when the hook is entered, so they cannot be a before-snapshot; the dictionary region compares them by id/name/path" + }, + { + "mitigation": "guard:dict", + "risk": "low", + "what": "the word at dictionary+0x14", + "why": "not modelled; emitted as an opaque pointer, which the default policy ignores -- a change is visible in a trace but never a divergence" + }, + { + "mitigation": "", + "risk": "low", + "what": "writes lines to the game log for a missing manifest", + "why": "log text is not simulation state" + }, + { + "mitigation": "", + "risk": "low", + "what": "std::sort tie order for equal weapon names", + "why": "msvc_sort.h replays MSVC 2010's introsort, but the shipped data has no tied names, so the tie rule is unexercised rather than verified" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Mars::GlobalConsts::LoadFile": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "LoadAll's post-state would have to be hooked to see it", + "risk": "medium", + "what": "erases each consumed key from the caller's std::map", + "why": "the map is a LoadAll temporary; declaring a red-black tree as a region is not possible before the call. First-occurrence-wins is reproduced in game::config::apply instead, so the *effect* is modelled, the container is not" + }, + { + "mitigation": "", + "risk": "low", + "what": "writes three kinds of line to the game log (unrecognised key, applied key, expected-but-not-found)", + "why": "log text is not part of the simulation state" + }, + { + "mitigation": "", + "risk": "low", + "what": "opens the file through the VFS and allocates/releases a refcounted buffer", + "why": "ours performs the same two calls, so allocation behaviour matches by construction rather than by comparison" + }, + { + "mitigation": "", + "risk": "low", + "what": "String slots assign through the engine's own std::string, leaking one heap block per long string in compare mode", + "why": "start-up only; documented in docs/M1.md" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Shim::SelfTest::Fill": { + "coverage": { + "state": "complete", + "unmodelled": [], + "why": "Fill writes buf[0..n) and nothing else; the whole range is a declared region" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + } + }, + "inline_max": 256, + "started": "2026-09-08T06:18:02Z" + } + ], + "totals": { + "calls": 3630, + "compared": 0, + "coverage_contradicted": 0, + "coverage_unstated": 0, + "diverged": 0, + "guarded_calls": 3630, + "invalid_records": 0, + "undeclared_calls": 4, + "undeclared_writes": 9 + }, + "warnings": [] +} diff --git a/verify/results/compare/recap-golden-trace.md b/verify/results/compare/recap-golden-trace.md new file mode 100644 index 0000000..b1659eb --- /dev/null +++ b/verify/results/compare/recap-golden-trace.md @@ -0,0 +1,51 @@ +## tracecmp report: recap-trace.jsonl + +- build: recap-7584bad-20260908T0615Z started: 2026-09-08T06:18:02Z inline_max: 256 +- calls: 3630 compared: 0 diverged: 0 invalid records: 0 warnings: 0 +- coverage: 3630 guarded call(s), 9 undeclared write(s) in 4 call(s); 0 hook(s) unstated, 0 contradicted + +| hook | calls | modes | compared | diverged | errors | +|---|---|---|---|---|---| +| Game::ServerPlayer::ComputeBudget | 3592 | trace:3592 | 0 | 0 | 0 | +| Game::ServerSystem::ProcessTurn | 28 | trace:28 | 0 | 0 | 0 | +| Game::StrategyServer::MoveFleet | 7 | trace:7 | 0 | 0 | 0 | +| Game::TechTree::ProcessResearch | 3 | trace:3 | 0 | 0 | 0 | + +### coverage + +| hook | verdict | compared regions | guards | undeclared writes | unmodelled | +|---|---|---|---|---|---| +| Game::ServerPlayer::ComputeBudget | partial | budget, inputs, research_alloc | budget_object | 0 | 4 | +| Game::ServerSystem::ProcessTurn | partial | bats2, bats_mask, haltv, ibon, infra, inputs, +6 | system | 6 in 3 call(s) | 5 | +| Game::StrategyServer::MoveFleet | partial | pos, prev_pos, rng, ship[0].range, ship[1].range, ship[2].range, +7 | fleet | 3 in 1 call(s) | 6 | +| Game::TechTree::ProcessResearch | partial | events, node[0], node[105], node[106], node[107], node[108], +270 | player, tree_header | 0 | 5 | + +#### Game::ServerPlayer::ComputeBudget — not checked by this run +- (high) slots 1, 2, 3, 4, 7 and 11 are produced by callees this milestone does not model (per-system output, trade, ship-carried population, a second manager, the build-queue spend) — they are copied out of the original's own output and back into the same slots, so they match BY CONSTRUCTION and prove nothing [declared input boundary; see budget_inputs.h] +- (high) ServerSystem::ComputeOutput repairs damaged ships in orbit — replace mode runs the original a second time on a scratch Budget to harvest the six unmodelled slots, so that repair happens TWICE per turn in replace mode and nothing in the trace would show it [guard:budget_object does not reach the ships; unverified] +- (medium) the difficulty-mods row from StrategyServer::GetDifficultyMods — not reachable from a ServerPlayer, so the two relevant entries are fitted constants measured from the B1 trace rather than snapshotted inputs +- (low) the research-allocation vector's heap block — only the element count is compared; the three words are heap pointers the default policy ignores + +#### Game::ServerSystem::ProcessTurn — not checked by this run +- (high) the addiction sweep raises MoraleEvents, which are constructed and appended to the system's capped morale history — the same class of write as B3's defect. sim::ProcessColonyTurn does compute the morale events (ColonyTurnResult), but the hook never emits them: DescribeMoraleEvents is dead code, so they are neither compared nor logged [guard:system] +- (high) every callee: the plague pass, imperial and civilian growth, the resource debit, in-orbit refuel, slaves, rebellion and the build queue — declared input boundary -- ProcessTurn is a dispatcher and only the words it writes itself are modelled. The callees raise EVENT_SLAVES_DEAD, EVENT_SYSTEM_REBELLION_CONTINUES, the plague events and SEBuildCompleted, create ships and bump per-player ShipRecords counters [guard:system covers the system object only, not the other objects] +- (medium) ApplyInfraBonus / ApplyPopBonus read the owner's home-system id, and the build queue writes the owning ServerPlayer — writes through a pointer to another object; no region reaches the player +- (low) ProcessRebellion is the pass's only RNG consumer and its draw count is data-dependent — the generator IS a declared region, so a moved post-state is visible and names the system whose rebellion fired -- it is reported, not modelled +- (medium) replace mode is refused for this hook — our side models the dispatcher's own writes and none of the callees, so a replace run would silently skip a colony's whole turn. There is therefore no oracle layer behind the compare for this hook +- guard hits in trace mode: system+0x1a4:12, system+0xd8:1, system+0x170:1, system+0x238:4 + +#### Game::StrategyServer::MoveFleet — not checked by this run +- (high) on arrival: dispatches SEFleetArrived and runs one of three arrival handlers by destination kind (enter system / join fleet / stop at point) — declared input boundary -- an arriving call is expected to differ in all of it, and none of it is declared, so the compare says nothing about arrivals [guard:fleet sees the fleet's own words; the event and the system do not] +- (high) on departure: cancels every still-acting ship (with a log line each) and calls ServerSystem::FleetDeparts, which rewrites the system's ownership bits — writes through pointers to ships and to the system +- (medium) the tanker top-up refuels other ships in the fleet — the per-ship range regions would show it, but ours does not model it, so a fleet with a tanker diverges for a known reason +- (medium) a node-line waypoint's step comes from the stutter profile — NodeLineStep / BuildStutterSegments are written and unit-tested but not wired in; the hook steps every waypoint type as speed x dt, so a node-line leg is knowingly mis-stepped and only its type is recorded [declared gap: docs/B4.md] +- (medium) a missed probabilistic jump scatters the fleet in a random direction — the direction is a second draw whose mapping is not modelled; ours leaves the position alone and reports the scatter distance, so the generator region diverges by one word on a miss +- (medium) the route revalidation and the waypoint list itself — declared input boundary; the waypoint vector is not a region +- guard hits in trace mode: fleet+0xa0:4, fleet+0xdc:1, fleet+0x10c:1 + +#### Game::TechTree::ProcessResearch — not checked by this run +- (high) posts EVENT_RESEARCH_OVERBUDGET on the owner's EventStorage in the same branch that sets node.flag = 2 — the message text is composed from the tech name, so ours cannot synthesise it; it would have to be posted through the game's own event API. This is the defect that made a clean compare false: replace mode's autosave differed from the oracle by exactly this one event [region:events (EvNxID now diverges instead of passing silently)] +- (medium) posts EVENT_TECHS_UNLOCKED for nodes that became available this turn — the trailing unlock loop makes no draw and writes no node, but it does build a names list and post an event [region:events] +- (high) TechTree::SetResearched on completion: the turn/order stamps, the child unlock cascade, the recursive research of zero-cost children, and the owner's OnTechResearched callback — its own milestone (B2); the callback writes live player state that compare mode must not touch, and it consumes one extra RNG word [guard:player, guard:tree_header] +- (medium) bumps the tree's completion-order counter (TechTree+0x20) — part of SetResearched; the per-node `order` word is compared but the counter it comes from was not a region [guard:tree_header] +- (low) writes a completion line to the game log — log text is not simulation state diff --git a/verify/results/compare/recap-misc-compare.json b/verify/results/compare/recap-misc-compare.json new file mode 100644 index 0000000..92894eb --- /dev/null +++ b/verify/results/compare/recap-misc-compare.json @@ -0,0 +1,759 @@ +{ + "coverage_contradicted": [], + "coverage_unstated": [], + "format": 1, + "hooks": { + "Game::ServerPlayer::OnTechResearched": { + "calls": 2, + "compared": 2, + "coverage": { + "checked_regions": [ + "abilities", + "capture_designs", + "design_masks", + "inc_mod", + "modifiers", + "node_bore_ptr", + "res_mod", + "research_target", + "rng", + "roll", + "species_flags", + "suit", + "translation", + "vaccines" + ], + "guarded_calls": 2, + "guards": [ + "player" + ], + "spans": { + "compare": [ + "player+0x274:3", + "player+0x278:3", + "player+0x27c:3", + "player+0x2b0:1", + "player+0x278:1" + ] + }, + "state": "partial", + "undeclared_calls": 2, + "undeclared_writes": 6, + "unmodelled": [ + { + "mitigation": "guard:player (EventStorage is inline at ServerPlayer+0x29c)", + "risk": "high", + "what": "posts EVENT_RESEARCH_COMPLETE / _UNDERBUDGET / _TEMPERANCE on the owner's EventStorage when !silent", + "why": "the same class of write as B3's defect, and this hook has no replace-mode oracle that could catch it: gotcha 4 in docs/B2.md says a changed save hash on a completion turn is expected and therefore not a finding" + }, + { + "mitigation": "", + "risk": "high", + "what": "writes every owned system's AI flag (CCC_AIVrus / CCC_AISlv), re-evaluates the arcology civilian cap, cures addiction and clears plague across systems AND ships", + "why": "writes through pointers to other objects; compare mode must not touch live state, and no region reaches them" + }, + { + "mitigation": "this is the extra draw B3 observed on a completion", + "risk": "high", + "what": "the pending plague-cure roll (ServerPlayer::RollResearchEvent)", + "why": "it draws exactly one word from the strategic generator unconditionally; running it in compare mode would consume real randomness. The two words it guards are still cleared and the record says whether it would have fired" + }, + { + "mitigation": "", + "risk": "medium", + "what": "TechTree::SetResearched for the Zuul boarding-pod grant", + "why": "it would mutate the live tree, and it recurses" + }, + { + "mitigation": "region:node_bore, declared only when the block already exists", + "risk": "medium", + "what": "allocates or frees the node-bore block at ServerPlayer+0x308", + "why": "ours has no allocator the game's runtime could free, so replace mode calls the game's own updater -- which means replace mode never exercises our node-bore selection at all" + } + ], + "verdict": "partial", + "why": "" + }, + "diffs": [], + "diverged": 0, + "diverged_call_ids": [], + "errors": 0, + "modes": { + "compare": 2 + } + }, + "Game::ServerSystem::ProcessTurn": { + "calls": 140, + "compared": 140, + "coverage": { + "checked_regions": [ + "bats2", + "bats_mask", + "haltv", + "ibon", + "infra", + "inputs", + "ntdev", + "pbon", + "rcex", + "rcex_mask", + "rng", + "tres" + ], + "guarded_calls": 140, + "guards": [ + "system" + ], + "spans": { + "compare": [ + "system+0x1a4:12", + "system+0xd8:1", + "system+0x170:1", + "system+0x238:4" + ] + }, + "state": "partial", + "undeclared_calls": 6, + "undeclared_writes": 15, + "unmodelled": [ + { + "mitigation": "guard:system", + "risk": "high", + "what": "the addiction sweep raises MoraleEvents, which are constructed and appended to the system's capped morale history", + "why": "the same class of write as B3's defect. sim::ProcessColonyTurn does compute the morale events (ColonyTurnResult), but the hook never emits them: DescribeMoraleEvents is dead code, so they are neither compared nor logged" + }, + { + "mitigation": "guard:system covers the system object only, not the other objects", + "risk": "high", + "what": "every callee: the plague pass, imperial and civilian growth, the resource debit, in-orbit refuel, slaves, rebellion and the build queue", + "why": "declared input boundary -- ProcessTurn is a dispatcher and only the words it writes itself are modelled. The callees raise EVENT_SLAVES_DEAD, EVENT_SYSTEM_REBELLION_CONTINUES, the plague events and SEBuildCompleted, create ships and bump per-player ShipRecords counters" + }, + { + "mitigation": "", + "risk": "medium", + "what": "ApplyInfraBonus / ApplyPopBonus read the owner's home-system id, and the build queue writes the owning ServerPlayer", + "why": "writes through a pointer to another object; no region reaches the player" + }, + { + "mitigation": "", + "risk": "low", + "what": "ProcessRebellion is the pass's only RNG consumer and its draw count is data-dependent", + "why": "the generator IS a declared region, so a moved post-state is visible and names the system whose rebellion fired -- it is reported, not modelled" + }, + { + "mitigation": "", + "risk": "medium", + "what": "replace mode is refused for this hook", + "why": "our side models the dispatcher's own writes and none of the callees, so a replace run would silently skip a colony's whole turn. There is therefore no oracle layer behind the compare for this hook" + } + ], + "verdict": "partial", + "why": "" + }, + "diffs": [], + "diverged": 0, + "diverged_call_ids": [], + "errors": 0, + "modes": { + "compare": 140 + } + }, + "Game::StrategyServer::MoveFleet": { + "calls": 45, + "compared": 45, + "coverage": { + "checked_regions": [ + "pos", + "prev_pos", + "rng", + "ship[0].range", + "ship[1].range", + "ship[2].range", + "ship[3].range", + "ship[4].range", + "ship[5].range", + "ship[6].range", + "ship[7].range", + "ship[8].range", + "ship[9].range" + ], + "guarded_calls": 45, + "guards": [ + "fleet" + ], + "spans": { + "compare": [ + "fleet+0xa0:4", + "fleet+0xdc:1", + "fleet+0x10c:1", + "fleet+0xcc:1", + "fleet+0xdb:2", + "fleet+0xe0:26" + ] + }, + "state": "partial", + "undeclared_calls": 15, + "undeclared_writes": 42, + "unmodelled": [ + { + "mitigation": "guard:fleet sees the fleet's own words; the event and the system do not", + "risk": "high", + "what": "on arrival: dispatches SEFleetArrived and runs one of three arrival handlers by destination kind (enter system / join fleet / stop at point)", + "why": "declared input boundary -- an arriving call is expected to differ in all of it, and none of it is declared, so the compare says nothing about arrivals" + }, + { + "mitigation": "", + "risk": "high", + "what": "on departure: cancels every still-acting ship (with a log line each) and calls ServerSystem::FleetDeparts, which rewrites the system's ownership bits", + "why": "writes through pointers to ships and to the system" + }, + { + "mitigation": "", + "risk": "medium", + "what": "the tanker top-up refuels other ships in the fleet", + "why": "the per-ship range regions would show it, but ours does not model it, so a fleet with a tanker diverges for a known reason" + }, + { + "mitigation": "declared gap: docs/B4.md", + "risk": "medium", + "what": "a node-line waypoint's step comes from the stutter profile", + "why": "NodeLineStep / BuildStutterSegments are written and unit-tested but not wired in; the hook steps every waypoint type as speed x dt, so a node-line leg is knowingly mis-stepped and only its type is recorded" + }, + { + "mitigation": "", + "risk": "medium", + "what": "a missed probabilistic jump scatters the fleet in a random direction", + "why": "the direction is a second draw whose mapping is not modelled; ours leaves the position alone and reports the scatter distance, so the generator region diverges by one word on a miss" + }, + { + "mitigation": "", + "risk": "medium", + "what": "the route revalidation and the waypoint list itself", + "why": "declared input boundary; the waypoint vector is not a region" + } + ], + "verdict": "partial", + "why": "" + }, + "diffs": [ + { + "call_id": 42, + "diff": [ + { + "orig": { + "t": "f32", + "v": 3.1515913 + }, + "ours": { + "t": "f32", + "v": 3.15159106 + }, + "path": "side.pos.after.v.y", + "why": "exact" + } + ], + "file": "recap-misc-compare.jsonl", + "line": 44 + }, + { + "call_id": 79, + "diff": [ + { + "orig": { + "t": "f32", + "v": 1.58417809 + }, + "ours": { + "t": "f32", + "v": 1.58417821 + }, + "path": "side.pos.after.v.y", + "why": "exact" + } + ], + "file": "recap-misc-compare.jsonl", + "line": 81 + }, + { + "call_id": 80, + "diff": [ + { + "orig": { + "t": "f32", + "v": 4.21149492 + }, + "ours": { + "t": "f32", + "v": 4.21149445 + }, + "path": "side.pos.after.v.y", + "why": "exact" + } + ], + "file": "recap-misc-compare.jsonl", + "line": 82 + }, + { + "call_id": 116, + "diff": [ + { + "orig": { + "t": "f32", + "v": 0.0167649984 + }, + "ours": { + "t": "f32", + "v": 0.0167651176 + }, + "path": "side.pos.after.v.y", + "why": "exact" + } + ], + "file": "recap-misc-compare.jsonl", + "line": 118 + }, + { + "call_id": 118, + "diff": [ + { + "orig": { + "t": "f32", + "v": 3.14307928 + }, + "ours": { + "t": "f32", + "v": 3.14307904 + }, + "path": "side.pos.after.v.y", + "why": "exact" + } + ], + "file": "recap-misc-compare.jsonl", + "line": 120 + } + ], + "diverged": 8, + "diverged_call_ids": [ + 42, + 79, + 80, + 116, + 118, + 154, + 156, + 157 + ], + "errors": 0, + "modes": { + "compare": 45 + } + } + }, + "inputs": [ + "/tmp/claude-1000/-home-alex/ec8e34f8-af37-4ef2-a309-ed6a15293097/scratchpad/recap-misc-compare.jsonl" + ], + "invalid": [], + "kind": "report", + "meta": [ + { + "build": "recap-7584bad-20260908T0615Z", + "exe_sha256": "970b7de729956a53094c7eb98aba4270aee98e2fed5daf0d39e290013c90c841", + "format": 1, + "hooks": { + "Game::SectionDictionary::SectionDictionary": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "see docs/M2.md; compare mode for this hook is not safe to run", + "risk": "high", + "what": "LoadSection registers each section with the string table and the live TechTree, and may append to the dictionary's own vector", + "why": "M3 scope; ours delegates to the game's LoadSection after the original has already built all 885 definitions, so the second pass registers duplicates -- the leading hypothesis for this hook's compare-mode crash" + }, + { + "mitigation": "", + "risk": "medium", + "what": "post-load validation pass over every definition's @-token against the string table", + "why": "runs after the loop and touches no declared region" + }, + { + "mitigation": "", + "risk": "low", + "what": "allocates 885 SectionDef objects (0x3d8 bytes each) on the game heap", + "why": "they do not exist at hook entry; compared by index/species/id/token" + }, + { + "mitigation": "guard:dict", + "risk": "low", + "what": "the word at dictionary+0x14", + "why": "not modelled; emitted as an ignored pointer" + }, + { + "mitigation": "", + "risk": "medium", + "what": "the before-snapshot of the object is uninitialised heap", + "why": "the hook is on the constructor, so `before` is meaningless and only `after` carries information" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::ServerPlayer::ComputeBudget": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "declared input boundary; see budget_inputs.h", + "risk": "high", + "what": "slots 1, 2, 3, 4, 7 and 11 are produced by callees this milestone does not model (per-system output, trade, ship-carried population, a second manager, the build-queue spend)", + "why": "they are copied out of the original's own output and back into the same slots, so they match BY CONSTRUCTION and prove nothing" + }, + { + "mitigation": "guard:budget_object does not reach the ships; unverified", + "risk": "high", + "what": "ServerSystem::ComputeOutput repairs damaged ships in orbit", + "why": "replace mode runs the original a second time on a scratch Budget to harvest the six unmodelled slots, so that repair happens TWICE per turn in replace mode and nothing in the trace would show it" + }, + { + "mitigation": "", + "risk": "medium", + "what": "the difficulty-mods row from StrategyServer::GetDifficultyMods", + "why": "not reachable from a ServerPlayer, so the two relevant entries are fitted constants measured from the B1 trace rather than snapshotted inputs" + }, + { + "mitigation": "", + "risk": "low", + "what": "the research-allocation vector's heap block", + "why": "only the element count is compared; the three words are heap pointers the default policy ignores" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::ServerPlayer::OnTechResearched": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "guard:player (EventStorage is inline at ServerPlayer+0x29c)", + "risk": "high", + "what": "posts EVENT_RESEARCH_COMPLETE / _UNDERBUDGET / _TEMPERANCE on the owner's EventStorage when !silent", + "why": "the same class of write as B3's defect, and this hook has no replace-mode oracle that could catch it: gotcha 4 in docs/B2.md says a changed save hash on a completion turn is expected and therefore not a finding" + }, + { + "mitigation": "", + "risk": "high", + "what": "writes every owned system's AI flag (CCC_AIVrus / CCC_AISlv), re-evaluates the arcology civilian cap, cures addiction and clears plague across systems AND ships", + "why": "writes through pointers to other objects; compare mode must not touch live state, and no region reaches them" + }, + { + "mitigation": "this is the extra draw B3 observed on a completion", + "risk": "high", + "what": "the pending plague-cure roll (ServerPlayer::RollResearchEvent)", + "why": "it draws exactly one word from the strategic generator unconditionally; running it in compare mode would consume real randomness. The two words it guards are still cleared and the record says whether it would have fired" + }, + { + "mitigation": "", + "risk": "medium", + "what": "TechTree::SetResearched for the Zuul boarding-pod grant", + "why": "it would mutate the live tree, and it recurses" + }, + { + "mitigation": "region:node_bore, declared only when the block already exists", + "risk": "medium", + "what": "allocates or frees the node-bore block at ServerPlayer+0x308", + "why": "ours has no allocator the game's runtime could free, so replace mode calls the game's own updater -- which means replace mode never exercises our node-bore selection at all" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::ServerSystem::ProcessTurn": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "guard:system", + "risk": "high", + "what": "the addiction sweep raises MoraleEvents, which are constructed and appended to the system's capped morale history", + "why": "the same class of write as B3's defect. sim::ProcessColonyTurn does compute the morale events (ColonyTurnResult), but the hook never emits them: DescribeMoraleEvents is dead code, so they are neither compared nor logged" + }, + { + "mitigation": "guard:system covers the system object only, not the other objects", + "risk": "high", + "what": "every callee: the plague pass, imperial and civilian growth, the resource debit, in-orbit refuel, slaves, rebellion and the build queue", + "why": "declared input boundary -- ProcessTurn is a dispatcher and only the words it writes itself are modelled. The callees raise EVENT_SLAVES_DEAD, EVENT_SYSTEM_REBELLION_CONTINUES, the plague events and SEBuildCompleted, create ships and bump per-player ShipRecords counters" + }, + { + "mitigation": "", + "risk": "medium", + "what": "ApplyInfraBonus / ApplyPopBonus read the owner's home-system id, and the build queue writes the owning ServerPlayer", + "why": "writes through a pointer to another object; no region reaches the player" + }, + { + "mitigation": "", + "risk": "low", + "what": "ProcessRebellion is the pass's only RNG consumer and its draw count is data-dependent", + "why": "the generator IS a declared region, so a moved post-state is visible and names the system whose rebellion fired -- it is reported, not modelled" + }, + { + "mitigation": "", + "risk": "medium", + "what": "replace mode is refused for this hook", + "why": "our side models the dispatcher's own writes and none of the callees, so a replace run would silently skip a colony's whole turn. There is therefore no oracle layer behind the compare for this hook" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::StrategyServer::MoveFleet": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "guard:fleet sees the fleet's own words; the event and the system do not", + "risk": "high", + "what": "on arrival: dispatches SEFleetArrived and runs one of three arrival handlers by destination kind (enter system / join fleet / stop at point)", + "why": "declared input boundary -- an arriving call is expected to differ in all of it, and none of it is declared, so the compare says nothing about arrivals" + }, + { + "mitigation": "", + "risk": "high", + "what": "on departure: cancels every still-acting ship (with a log line each) and calls ServerSystem::FleetDeparts, which rewrites the system's ownership bits", + "why": "writes through pointers to ships and to the system" + }, + { + "mitigation": "", + "risk": "medium", + "what": "the tanker top-up refuels other ships in the fleet", + "why": "the per-ship range regions would show it, but ours does not model it, so a fleet with a tanker diverges for a known reason" + }, + { + "mitigation": "declared gap: docs/B4.md", + "risk": "medium", + "what": "a node-line waypoint's step comes from the stutter profile", + "why": "NodeLineStep / BuildStutterSegments are written and unit-tested but not wired in; the hook steps every waypoint type as speed x dt, so a node-line leg is knowingly mis-stepped and only its type is recorded" + }, + { + "mitigation": "", + "risk": "medium", + "what": "a missed probabilistic jump scatters the fleet in a random direction", + "why": "the direction is a second draw whose mapping is not modelled; ours leaves the position alone and reports the scatter distance, so the generator region diverges by one word on a miss" + }, + { + "mitigation": "", + "risk": "medium", + "what": "the route revalidation and the waypoint list itself", + "why": "declared input boundary; the waypoint vector is not a region" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::StrategyServer::ProcessFleetMovement": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "", + "risk": "high", + "what": "`ours` re-reads the LIVE fleet list after the original has run", + "why": "the gate-traffic total is computed by the original at the very end of the pass, so a pre-call snapshot would diverge for the wrong reason. It breaks the compare invariant that ours never touches live memory, and it makes this hook's verdict partly self-fulfilling: the input to our arithmetic is the original's own post-move state" + }, + { + "mitigation": "", + "risk": "high", + "what": "drives MoveFleet up to five times per fleet", + "why": "every undeclared effect of MoveFleet happens inside this call too; the pass schedule is recorded in the arguments but never compared" + }, + { + "mitigation": "", + "risk": "high", + "what": "writes FPdpos into every fleet and clears flags 0x2 and 0x100 on every fleet", + "why": "no region covers the fleets, only the players' gate-traffic words" + }, + { + "mitigation": "", + "risk": "high", + "what": "OnFleetArrived posts EVENT_FLEET_ARRIVED", + "why": "the same class of write as B3's defect, and there is no replace mode for this hook, so nothing behind the compare could catch it either" + }, + { + "mitigation": "", + "risk": "medium", + "what": "the original accumulates by player->index but writes back by the player's position in the server vector, into a fixed 32-int array with no bounds check", + "why": "a real latent bug in the original that our side reproduces only while index == position; the reference save never separates them" + }, + { + "mitigation": "", + "risk": "medium", + "what": "PassSchedule() is never called by the hook, and FleetSummary::targetFleetId / relation are never filled", + "why": "the header claims ours predicts the call order for a trace to check; that prediction is not actually emitted" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::TechTree::ProcessResearch": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "region:events (EvNxID now diverges instead of passing silently)", + "risk": "high", + "what": "posts EVENT_RESEARCH_OVERBUDGET on the owner's EventStorage in the same branch that sets node.flag = 2", + "why": "the message text is composed from the tech name, so ours cannot synthesise it; it would have to be posted through the game's own event API. This is the defect that made a clean compare false: replace mode's autosave differed from the oracle by exactly this one event" + }, + { + "mitigation": "region:events", + "risk": "medium", + "what": "posts EVENT_TECHS_UNLOCKED for nodes that became available this turn", + "why": "the trailing unlock loop makes no draw and writes no node, but it does build a names list and post an event" + }, + { + "mitigation": "guard:player, guard:tree_header", + "risk": "high", + "what": "TechTree::SetResearched on completion: the turn/order stamps, the child unlock cascade, the recursive research of zero-cost children, and the owner's OnTechResearched callback", + "why": "its own milestone (B2); the callback writes live player state that compare mode must not touch, and it consumes one extra RNG word" + }, + { + "mitigation": "guard:tree_header", + "risk": "medium", + "what": "bumps the tree's completion-order counter (TechTree+0x20)", + "why": "part of SetResearched; the per-node `order` word is compared but the counter it comes from was not a region" + }, + { + "mitigation": "", + "risk": "low", + "what": "writes a completion line to the game log", + "why": "log text is not simulation state" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::WeaponDictionary::Init": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "suspected cause of the sibling section hook's compare crash (docs/M2.md)", + "risk": "high", + "what": "LoadWeapon -> WeaponDef::ParseScript registers each weapon's name with the string table and resolves `requires` against the live TechTree", + "why": "per-file parsing is M3 scope; ours delegates to the game's own LoadWeapon, so a compare run performs the registration a SECOND time and neither the string table nor the tech tree is a declared region" + }, + { + "mitigation": "", + "risk": "low", + "what": "allocates 123 WeaponDef objects (0x278 bytes each) on the game heap", + "why": "the definitions do not exist when the hook is entered, so they cannot be a before-snapshot; the dictionary region compares them by id/name/path" + }, + { + "mitigation": "guard:dict", + "risk": "low", + "what": "the word at dictionary+0x14", + "why": "not modelled; emitted as an opaque pointer, which the default policy ignores -- a change is visible in a trace but never a divergence" + }, + { + "mitigation": "", + "risk": "low", + "what": "writes lines to the game log for a missing manifest", + "why": "log text is not simulation state" + }, + { + "mitigation": "", + "risk": "low", + "what": "std::sort tie order for equal weapon names", + "why": "msvc_sort.h replays MSVC 2010's introsort, but the shipped data has no tied names, so the tie rule is unexercised rather than verified" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Mars::GlobalConsts::LoadFile": { + "coverage": { + "state": "partial", + "unmodelled": [ + { + "mitigation": "LoadAll's post-state would have to be hooked to see it", + "risk": "medium", + "what": "erases each consumed key from the caller's std::map", + "why": "the map is a LoadAll temporary; declaring a red-black tree as a region is not possible before the call. First-occurrence-wins is reproduced in game::config::apply instead, so the *effect* is modelled, the container is not" + }, + { + "mitigation": "", + "risk": "low", + "what": "writes three kinds of line to the game log (unrecognised key, applied key, expected-but-not-found)", + "why": "log text is not part of the simulation state" + }, + { + "mitigation": "", + "risk": "low", + "what": "opens the file through the VFS and allocates/releases a refcounted buffer", + "why": "ours performs the same two calls, so allocation behaviour matches by construction rather than by comparison" + }, + { + "mitigation": "", + "risk": "low", + "what": "String slots assign through the engine's own std::string, leaking one heap block per long string in compare mode", + "why": "start-up only; documented in docs/M1.md" + } + ], + "why": "" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Shim::SelfTest::Fill": { + "coverage": { + "state": "complete", + "unmodelled": [], + "why": "Fill writes buf[0..n) and nothing else; the whole range is a declared region" + }, + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + } + }, + "inline_max": 256, + "started": "2026-09-08T06:47:07Z" + } + ], + "totals": { + "calls": 187, + "compared": 187, + "coverage_contradicted": 0, + "coverage_unstated": 0, + "diverged": 8, + "guarded_calls": 187, + "invalid_records": 0, + "undeclared_calls": 23, + "undeclared_writes": 63 + }, + "warnings": [] +} diff --git a/verify/results/compare/recap-misc-compare.md b/verify/results/compare/recap-misc-compare.md new file mode 100644 index 0000000..84a3750 --- /dev/null +++ b/verify/results/compare/recap-misc-compare.md @@ -0,0 +1,57 @@ +## tracecmp report: recap-misc-compare.jsonl + +- build: recap-7584bad-20260908T0615Z started: 2026-09-08T06:47:07Z inline_max: 256 +- calls: 187 compared: 187 diverged: 8 invalid records: 0 warnings: 0 +- coverage: 187 guarded call(s), 63 undeclared write(s) in 23 call(s); 0 hook(s) unstated, 0 contradicted + +| hook | calls | modes | compared | diverged | errors | +|---|---|---|---|---|---| +| Game::ServerPlayer::OnTechResearched | 2 | compare:2 | 2 | 0 | 0 | +| Game::ServerSystem::ProcessTurn | 140 | compare:140 | 140 | 0 | 0 | +| Game::StrategyServer::MoveFleet | 45 | compare:45 | 45 | 8 | 0 | + +### coverage + +| hook | verdict | compared regions | guards | undeclared writes | unmodelled | +|---|---|---|---|---|---| +| Game::ServerPlayer::OnTechResearched | partial | abilities, capture_designs, design_masks, inc_mod, modifiers, node_bore_ptr, +8 | player | 6 in 2 call(s) | 5 | +| Game::ServerSystem::ProcessTurn | partial | bats2, bats_mask, haltv, ibon, infra, inputs, +6 | system | 15 in 6 call(s) | 5 | +| Game::StrategyServer::MoveFleet | partial | pos, prev_pos, rng, ship[0].range, ship[1].range, ship[2].range, +7 | fleet | 42 in 15 call(s) | 6 | + +#### Game::ServerPlayer::OnTechResearched — not checked by this run +- (high) posts EVENT_RESEARCH_COMPLETE / _UNDERBUDGET / _TEMPERANCE on the owner's EventStorage when !silent — the same class of write as B3's defect, and this hook has no replace-mode oracle that could catch it: gotcha 4 in docs/B2.md says a changed save hash on a completion turn is expected and therefore not a finding [guard:player (EventStorage is inline at ServerPlayer+0x29c)] +- (high) writes every owned system's AI flag (CCC_AIVrus / CCC_AISlv), re-evaluates the arcology civilian cap, cures addiction and clears plague across systems AND ships — writes through pointers to other objects; compare mode must not touch live state, and no region reaches them +- (high) the pending plague-cure roll (ServerPlayer::RollResearchEvent) — it draws exactly one word from the strategic generator unconditionally; running it in compare mode would consume real randomness. The two words it guards are still cleared and the record says whether it would have fired [this is the extra draw B3 observed on a completion] +- (medium) TechTree::SetResearched for the Zuul boarding-pod grant — it would mutate the live tree, and it recurses +- (medium) allocates or frees the node-bore block at ServerPlayer+0x308 — ours has no allocator the game's runtime could free, so replace mode calls the game's own updater -- which means replace mode never exercises our node-bore selection at all [region:node_bore, declared only when the block already exists] +- guard hits in compare mode: player+0x274:3, player+0x278:3, player+0x27c:3, player+0x2b0:1, player+0x278:1 + +#### Game::ServerSystem::ProcessTurn — not checked by this run +- (high) the addiction sweep raises MoraleEvents, which are constructed and appended to the system's capped morale history — the same class of write as B3's defect. sim::ProcessColonyTurn does compute the morale events (ColonyTurnResult), but the hook never emits them: DescribeMoraleEvents is dead code, so they are neither compared nor logged [guard:system] +- (high) every callee: the plague pass, imperial and civilian growth, the resource debit, in-orbit refuel, slaves, rebellion and the build queue — declared input boundary -- ProcessTurn is a dispatcher and only the words it writes itself are modelled. The callees raise EVENT_SLAVES_DEAD, EVENT_SYSTEM_REBELLION_CONTINUES, the plague events and SEBuildCompleted, create ships and bump per-player ShipRecords counters [guard:system covers the system object only, not the other objects] +- (medium) ApplyInfraBonus / ApplyPopBonus read the owner's home-system id, and the build queue writes the owning ServerPlayer — writes through a pointer to another object; no region reaches the player +- (low) ProcessRebellion is the pass's only RNG consumer and its draw count is data-dependent — the generator IS a declared region, so a moved post-state is visible and names the system whose rebellion fired -- it is reported, not modelled +- (medium) replace mode is refused for this hook — our side models the dispatcher's own writes and none of the callees, so a replace run would silently skip a colony's whole turn. There is therefore no oracle layer behind the compare for this hook +- guard hits in compare mode: system+0x1a4:12, system+0xd8:1, system+0x170:1, system+0x238:4 + +#### Game::StrategyServer::MoveFleet — not checked by this run +- (high) on arrival: dispatches SEFleetArrived and runs one of three arrival handlers by destination kind (enter system / join fleet / stop at point) — declared input boundary -- an arriving call is expected to differ in all of it, and none of it is declared, so the compare says nothing about arrivals [guard:fleet sees the fleet's own words; the event and the system do not] +- (high) on departure: cancels every still-acting ship (with a log line each) and calls ServerSystem::FleetDeparts, which rewrites the system's ownership bits — writes through pointers to ships and to the system +- (medium) the tanker top-up refuels other ships in the fleet — the per-ship range regions would show it, but ours does not model it, so a fleet with a tanker diverges for a known reason +- (medium) a node-line waypoint's step comes from the stutter profile — NodeLineStep / BuildStutterSegments are written and unit-tested but not wired in; the hook steps every waypoint type as speed x dt, so a node-line leg is knowingly mis-stepped and only its type is recorded [declared gap: docs/B4.md] +- (medium) a missed probabilistic jump scatters the fleet in a random direction — the direction is a second draw whose mapping is not modelled; ours leaves the position alone and reports the scatter distance, so the generator region diverges by one word on a miss +- (medium) the route revalidation and the waypoint list itself — declared input boundary; the waypoint vector is not a region +- guard hits in compare mode: fleet+0xa0:4, fleet+0xdc:1, fleet+0x10c:1, fleet+0xcc:1, fleet+0xdb:2, fleet+0xe0:26 + +### Game::StrategyServer::MoveFleet: first 5 of 8 divergent call(s) +- call_id 42 (recap-misc-compare.jsonl:44) + side.pos.after.v.y [exact] orig={"t":"f32","v":3.1515913} ours={"t":"f32","v":3.15159106} +- call_id 79 (recap-misc-compare.jsonl:81) + side.pos.after.v.y [exact] orig={"t":"f32","v":1.58417809} ours={"t":"f32","v":1.58417821} +- call_id 80 (recap-misc-compare.jsonl:82) + side.pos.after.v.y [exact] orig={"t":"f32","v":4.21149492} ours={"t":"f32","v":4.21149445} +- call_id 116 (recap-misc-compare.jsonl:118) + side.pos.after.v.y [exact] orig={"t":"f32","v":0.0167649984} ours={"t":"f32","v":0.0167651176} +- call_id 118 (recap-misc-compare.jsonl:120) + side.pos.after.v.y [exact] orig={"t":"f32","v":3.14307928} ours={"t":"f32","v":3.14307904} + other divergent call_ids: [154, 156, 157] diff --git a/verify/results/shim/recap-b1-shim.log b/verify/results/shim/recap-b1-shim.log new file mode 100644 index 0000000..fc4296d --- /dev/null +++ b/verify/results/shim/recap-b1-shim.log @@ -0,0 +1,39 @@ +02:40:02.429 [tid 5208] ==== sots-engine shim (binkw32 proxy) build recap-7584bad-20260908T0615Z ==== +02:40:02.429 [tid 5208] exe: C:\SOTS\Sword of the Stars.exe +02:40:02.429 [tid 5208] exe base=0x00e80000 (link-time image base 0x00400000, ASLR delta +11010048) pid=7572 shim=696b0000 +02:40:02.429 [tid 5208] addresses: Source: sots-re ghidra/addresses.json @ ff67ec0, generated 2026-09-08 by tools/gen_addresses.py +02:40:02.429 [tid 5208] config: hooks=trace +02:40:02.429 [tid 5208] config: hook.Shim::SelfTest::Fill=off +02:40:02.429 [tid 5208] config: hook.Mars::GlobalConsts::LoadFile=off +02:40:02.429 [tid 5208] config: hook.Game::WeaponDictionary::Init=off +02:40:02.429 [tid 5208] config: hook.Game::SectionDictionary::SectionDictionary=off +02:40:02.429 [tid 5208] config: hook.Game::TechTree::ProcessResearch=off +02:40:02.429 [tid 5208] config: hook.Game::ServerPlayer::OnTechResearched=off +02:40:02.429 [tid 5208] config: hook.Game::ServerSystem::ProcessTurn=off +02:40:02.429 [tid 5208] config: hook.Game::StrategyServer::MoveFleet=off +02:40:02.429 [tid 5208] config: hook.Game::StrategyServer::ProcessFleetMovement=off +02:40:02.429 [tid 5208] config: hook.Game::ServerPlayer::ComputeBudget=compare +02:40:02.429 [tid 5208] config: trace.path=C:\SOTS\shim.trace.jsonl +02:40:02.429 [tid 5208] config: trace.inline_max=256 +02:40:02.429 [tid 5208] config: trace.flush=always +02:40:02.554 [tid 5208] trace: C:\SOTS\shim.trace.jsonl (default mode trace, inline_max 256, flush always) +02:40:02.554 [tid 5208] hook: Mars_Application_Initialize rva=0x004a0e50 -> va=01320e50 +02:40:02.554 [tid 5208] hook: MH_Initialize -> MH_OK +02:40:02.554 [tid 5208] hook: MH_CreateHook -> MH_OK (trampoline=01af0fe0) +02:40:02.569 [tid 5208] hook: MH_EnableHook -> MH_OK +02:40:02.569 [tid 5208] cfg: GlobalConsts hook ready (scale constant 0.017453292519943295) +02:40:02.569 [tid 5208] hook: Mars::GlobalConsts::LoadFile rva=0x004b73c0 mode=off (not installed) +02:40:02.569 [tid 5208] dict: dictionaries hook ready (crt new=6adc232b delete=6adc0174) +02:40:02.569 [tid 5208] hook: Game::WeaponDictionary::Init rva=0x0019a4c0 mode=off (not installed) +02:40:02.569 [tid 5208] hook: Game::SectionDictionary::SectionDictionary rva=0x00176f40 mode=off (not installed) +02:40:02.569 [tid 5208] research: ProcessResearch hook ready (Cost=00ffda00, node=0x34, rng=0x9cc, fpu_cw=0x027f) +02:40:02.569 [tid 5208] hook: Game::TechTree::ProcessResearch rva=0x001876c0 mode=off (not installed) +02:40:02.569 [tid 5208] techfx: OnTechResearched hook ready (regions=15, gate=0/0, fpu_cw=0x027f) +02:40:02.569 [tid 5208] hook: Game::ServerPlayer::OnTechResearched rva=0x00491790 mode=off (not installed) +02:40:02.569 [tid 5208] hook: Game::ServerPlayer::ComputeBudget rva=0x00463030 -> va=012e3030 MH_CreateHook -> MH_OK (trampoline=01af0fc0) +02:40:02.585 [tid 5208] hook: Game::ServerPlayer::ComputeBudget MH_EnableHook -> MH_OK mode=compare +02:40:02.585 [tid 5208] hook: Game::ServerSystem::ProcessTurn rva=0x003598e0 mode=off (not installed) +02:40:02.585 [tid 5208] hook: Game::StrategyServer::MoveFleet rva=0x003d9ee0 mode=off (not installed) +02:40:02.585 [tid 5208] hook: Game::StrategyServer::ProcessFleetMovement rva=0x003da9a0 mode=off (not installed) +02:40:02.585 [tid 5208] selftest: Shim::SelfTest::Fill mode=off checksum=075ef0c3 records=0 +02:40:02.976 [tid 5208] Application::Initialize called (this=020c8128) diff --git a/verify/results/shim/recap-b3-shim.log b/verify/results/shim/recap-b3-shim.log new file mode 100644 index 0000000..57ba584 --- /dev/null +++ b/verify/results/shim/recap-b3-shim.log @@ -0,0 +1,39 @@ +02:28:40.170 [tid 1412] ==== sots-engine shim (binkw32 proxy) build recap-7584bad-20260908T0615Z ==== +02:28:40.170 [tid 1412] exe: C:\SOTS\Sword of the Stars.exe +02:28:40.170 [tid 1412] exe base=0x00e80000 (link-time image base 0x00400000, ASLR delta +11010048) pid=2320 shim=696b0000 +02:28:40.170 [tid 1412] addresses: Source: sots-re ghidra/addresses.json @ ff67ec0, generated 2026-09-08 by tools/gen_addresses.py +02:28:40.170 [tid 1412] config: hooks=trace +02:28:40.170 [tid 1412] config: hook.Shim::SelfTest::Fill=off +02:28:40.170 [tid 1412] config: hook.Mars::GlobalConsts::LoadFile=off +02:28:40.170 [tid 1412] config: hook.Game::WeaponDictionary::Init=off +02:28:40.170 [tid 1412] config: hook.Game::SectionDictionary::SectionDictionary=off +02:28:40.170 [tid 1412] config: hook.Game::ServerPlayer::ComputeBudget=off +02:28:40.170 [tid 1412] config: hook.Game::ServerPlayer::OnTechResearched=off +02:28:40.170 [tid 1412] config: hook.Game::ServerSystem::ProcessTurn=off +02:28:40.170 [tid 1412] config: hook.Game::StrategyServer::MoveFleet=off +02:28:40.170 [tid 1412] config: hook.Game::StrategyServer::ProcessFleetMovement=off +02:28:40.170 [tid 1412] config: hook.Game::TechTree::ProcessResearch=compare +02:28:40.170 [tid 1412] config: trace.path=C:\SOTS\shim.trace.jsonl +02:28:40.170 [tid 1412] config: trace.inline_max=256 +02:28:40.170 [tid 1412] config: trace.flush=always +02:28:40.232 [tid 1412] trace: C:\SOTS\shim.trace.jsonl (default mode trace, inline_max 256, flush always) +02:28:40.232 [tid 1412] hook: Mars_Application_Initialize rva=0x004a0e50 -> va=01320e50 +02:28:40.232 [tid 1412] hook: MH_Initialize -> MH_OK +02:28:40.232 [tid 1412] hook: MH_CreateHook -> MH_OK (trampoline=01b00fe0) +02:28:40.248 [tid 1412] hook: MH_EnableHook -> MH_OK +02:28:40.248 [tid 1412] cfg: GlobalConsts hook ready (scale constant 0.017453292519943295) +02:28:40.248 [tid 1412] hook: Mars::GlobalConsts::LoadFile rva=0x004b73c0 mode=off (not installed) +02:28:40.248 [tid 1412] dict: dictionaries hook ready (crt new=6adc232b delete=6adc0174) +02:28:40.248 [tid 1412] hook: Game::WeaponDictionary::Init rva=0x0019a4c0 mode=off (not installed) +02:28:40.248 [tid 1412] hook: Game::SectionDictionary::SectionDictionary rva=0x00176f40 mode=off (not installed) +02:28:40.248 [tid 1412] research: ProcessResearch hook ready (Cost=00ffda00, node=0x34, rng=0x9cc, fpu_cw=0x027f) +02:28:40.248 [tid 1412] hook: Game::TechTree::ProcessResearch rva=0x001876c0 -> va=010076c0 MH_CreateHook -> MH_OK (trampoline=01b00fc0) +02:28:40.264 [tid 1412] hook: Game::TechTree::ProcessResearch MH_EnableHook -> MH_OK mode=compare +02:28:40.264 [tid 1412] techfx: OnTechResearched hook ready (regions=15, gate=0/0, fpu_cw=0x027f) +02:28:40.264 [tid 1412] hook: Game::ServerPlayer::OnTechResearched rva=0x00491790 mode=off (not installed) +02:28:40.264 [tid 1412] hook: Game::ServerPlayer::ComputeBudget rva=0x00463030 mode=off (not installed) +02:28:40.264 [tid 1412] hook: Game::ServerSystem::ProcessTurn rva=0x003598e0 mode=off (not installed) +02:28:40.264 [tid 1412] hook: Game::StrategyServer::MoveFleet rva=0x003d9ee0 mode=off (not installed) +02:28:40.264 [tid 1412] hook: Game::StrategyServer::ProcessFleetMovement rva=0x003da9a0 mode=off (not installed) +02:28:40.264 [tid 1412] selftest: Shim::SelfTest::Fill mode=off checksum=075ef0c3 records=0 +02:28:40.279 [tid 1412] Application::Initialize called (this=01b18128) diff --git a/verify/results/shim/recap-misc-shim.log b/verify/results/shim/recap-misc-shim.log new file mode 100644 index 0000000..dbfdffa --- /dev/null +++ b/verify/results/shim/recap-misc-shim.log @@ -0,0 +1,43 @@ +02:47:07.341 [tid 7656] ==== sots-engine shim (binkw32 proxy) build recap-7584bad-20260908T0615Z ==== +02:47:07.341 [tid 7656] exe: C:\SOTS\Sword of the Stars.exe +02:47:07.341 [tid 7656] exe base=0x00e80000 (link-time image base 0x00400000, ASLR delta +11010048) pid=4552 shim=696b0000 +02:47:07.341 [tid 7656] addresses: Source: sots-re ghidra/addresses.json @ ff67ec0, generated 2026-09-08 by tools/gen_addresses.py +02:47:07.341 [tid 7656] config: hooks=trace +02:47:07.341 [tid 7656] config: hook.Shim::SelfTest::Fill=off +02:47:07.341 [tid 7656] config: hook.Mars::GlobalConsts::LoadFile=off +02:47:07.341 [tid 7656] config: hook.Game::WeaponDictionary::Init=off +02:47:07.341 [tid 7656] config: hook.Game::SectionDictionary::SectionDictionary=off +02:47:07.341 [tid 7656] config: hook.Game::TechTree::ProcessResearch=off +02:47:07.341 [tid 7656] config: hook.Game::ServerPlayer::ComputeBudget=off +02:47:07.341 [tid 7656] config: hook.Game::StrategyServer::ProcessFleetMovement=off +02:47:07.341 [tid 7656] config: hook.Game::ServerPlayer::OnTechResearched=compare +02:47:07.341 [tid 7656] config: hook.Game::ServerSystem::ProcessTurn=compare +02:47:07.341 [tid 7656] config: hook.Game::StrategyServer::MoveFleet=compare +02:47:07.341 [tid 7656] config: trace.path=C:\SOTS\shim.trace.jsonl +02:47:07.341 [tid 7656] config: trace.inline_max=256 +02:47:07.341 [tid 7656] config: trace.flush=always +02:47:07.403 [tid 7656] trace: C:\SOTS\shim.trace.jsonl (default mode trace, inline_max 256, flush always) +02:47:07.403 [tid 7656] hook: Mars_Application_Initialize rva=0x004a0e50 -> va=01320e50 +02:47:07.403 [tid 7656] hook: MH_Initialize -> MH_OK +02:47:07.403 [tid 7656] hook: MH_CreateHook -> MH_OK (trampoline=038f0fe0) +02:47:07.434 [tid 7656] hook: MH_EnableHook -> MH_OK +02:47:07.434 [tid 7656] cfg: GlobalConsts hook ready (scale constant 0.017453292519943295) +02:47:07.434 [tid 7656] hook: Mars::GlobalConsts::LoadFile rva=0x004b73c0 mode=off (not installed) +02:47:07.434 [tid 7656] dict: dictionaries hook ready (crt new=6adc232b delete=6adc0174) +02:47:07.434 [tid 7656] hook: Game::WeaponDictionary::Init rva=0x0019a4c0 mode=off (not installed) +02:47:07.434 [tid 7656] hook: Game::SectionDictionary::SectionDictionary rva=0x00176f40 mode=off (not installed) +02:47:07.434 [tid 7656] research: ProcessResearch hook ready (Cost=00ffda00, node=0x34, rng=0x9cc, fpu_cw=0x027f) +02:47:07.434 [tid 7656] hook: Game::TechTree::ProcessResearch rva=0x001876c0 mode=off (not installed) +02:47:07.434 [tid 7656] techfx: OnTechResearched hook ready (regions=15, gate=0/0, fpu_cw=0x027f) +02:47:07.434 [tid 7656] hook: Game::ServerPlayer::OnTechResearched rva=0x00491790 -> va=01311790 MH_CreateHook -> MH_OK (trampoline=038f0fc0) +02:47:07.450 [tid 7656] hook: Game::ServerPlayer::OnTechResearched MH_EnableHook -> MH_OK mode=compare +02:47:07.450 [tid 7656] hook: Game::ServerPlayer::ComputeBudget rva=0x00463030 mode=off (not installed) +02:47:07.450 [tid 7656] hook: Game::ServerSystem::ProcessTurn rva=0x003598e0 -> va=011d98e0 MH_CreateHook -> MH_OK (trampoline=038f0fa0) +02:47:07.466 [tid 7656] hook: Game::ServerSystem::ProcessTurn MH_EnableHook -> MH_OK mode=compare +02:47:07.466 [tid 7656] hook: Game::StrategyServer::MoveFleet rva=0x003d9ee0 -> va=01259ee0 MH_CreateHook -> MH_OK (trampoline=038f0f80) +02:47:07.481 [tid 7656] hook: Game::StrategyServer::MoveFleet MH_EnableHook -> MH_OK mode=compare +02:47:07.481 [tid 7656] hook: Game::StrategyServer::ProcessFleetMovement rva=0x003da9a0 mode=off (not installed) +02:47:07.481 [tid 7656] selftest: Shim::SelfTest::Fill mode=off checksum=075ef0c3 records=0 +02:47:07.497 [tid 7656] Application::Initialize called (this=03c68128) +02:52:42.722 [tid 7656] techfx: ours mode=compare id=10001 granted=10197 plague=0x00 systems_ai=0 civcaps=0 temperance=0x00 bore_changed=0 bore_present=0 roll=0 value=-1 +02:53:45.910 [tid 7656] techfx: ours mode=compare id=10094 granted=10197 plague=0x00 systems_ai=0 civcaps=0 temperance=0x00 bore_changed=0 bore_present=0 roll=1 value=0.316456825 diff --git a/verify/results/shim/recap-misc-turn7.png b/verify/results/shim/recap-misc-turn7.png new file mode 100644 index 0000000000000000000000000000000000000000..34125aa7aefee68396c8d47e3f0d611f9a94f1aa GIT binary patch literal 170516 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

QFobT9wSdzMbp6V3QUjLswE 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 YKgNb26L%sh^#A|>07*qoM6N<$f?WbSPyhe` literal 0 HcmV?d00001 diff --git a/verify/results/shim/recap-trace-shim.log b/verify/results/shim/recap-trace-shim.log new file mode 100644 index 0000000..75199af --- /dev/null +++ b/verify/results/shim/recap-trace-shim.log @@ -0,0 +1,43 @@ +02:18:02.517 [tid 8008] ==== sots-engine shim (binkw32 proxy) build recap-7584bad-20260908T0615Z ==== +02:18:02.517 [tid 8008] exe: C:\SOTS\Sword of the Stars.exe +02:18:02.517 [tid 8008] exe base=0x00e80000 (link-time image base 0x00400000, ASLR delta +11010048) pid=2856 shim=696b0000 +02:18:02.517 [tid 8008] addresses: Source: sots-re ghidra/addresses.json @ ff67ec0, generated 2026-09-08 by tools/gen_addresses.py +02:18:02.517 [tid 8008] config: hooks=trace +02:18:02.517 [tid 8008] config: hook.Shim::SelfTest::Fill=off +02:18:02.517 [tid 8008] config: hook.Mars::GlobalConsts::LoadFile=off +02:18:02.517 [tid 8008] config: hook.Game::WeaponDictionary::Init=off +02:18:02.517 [tid 8008] config: hook.Game::SectionDictionary::SectionDictionary=off +02:18:02.517 [tid 8008] config: hook.Game::StrategyServer::ProcessFleetMovement=off +02:18:02.517 [tid 8008] config: hook.Game::TechTree::ProcessResearch=trace +02:18:02.517 [tid 8008] config: hook.Game::ServerPlayer::ComputeBudget=trace +02:18:02.517 [tid 8008] config: hook.Game::ServerPlayer::OnTechResearched=trace +02:18:02.517 [tid 8008] config: hook.Game::ServerSystem::ProcessTurn=trace +02:18:02.517 [tid 8008] config: hook.Game::StrategyServer::MoveFleet=trace +02:18:02.517 [tid 8008] config: trace.path=C:\SOTS\shim.trace.jsonl +02:18:02.517 [tid 8008] config: trace.inline_max=256 +02:18:02.517 [tid 8008] config: trace.flush=always +02:18:02.579 [tid 8008] trace: C:\SOTS\shim.trace.jsonl (default mode trace, inline_max 256, flush always) +02:18:02.579 [tid 8008] hook: Mars_Application_Initialize rva=0x004a0e50 -> va=01320e50 +02:18:02.579 [tid 8008] hook: MH_Initialize -> MH_OK +02:18:02.579 [tid 8008] hook: MH_CreateHook -> MH_OK (trampoline=01c00fe0) +02:18:02.595 [tid 8008] hook: MH_EnableHook -> MH_OK +02:18:02.595 [tid 8008] cfg: GlobalConsts hook ready (scale constant 0.017453292519943295) +02:18:02.595 [tid 8008] hook: Mars::GlobalConsts::LoadFile rva=0x004b73c0 mode=off (not installed) +02:18:02.595 [tid 8008] dict: dictionaries hook ready (crt new=6adc232b delete=6adc0174) +02:18:02.595 [tid 8008] hook: Game::WeaponDictionary::Init rva=0x0019a4c0 mode=off (not installed) +02:18:02.595 [tid 8008] hook: Game::SectionDictionary::SectionDictionary rva=0x00176f40 mode=off (not installed) +02:18:02.595 [tid 8008] research: ProcessResearch hook ready (Cost=00ffda00, node=0x34, rng=0x9cc, fpu_cw=0x027f) +02:18:02.595 [tid 8008] hook: Game::TechTree::ProcessResearch rva=0x001876c0 -> va=010076c0 MH_CreateHook -> MH_OK (trampoline=01c00fc0) +02:18:02.610 [tid 8008] hook: Game::TechTree::ProcessResearch MH_EnableHook -> MH_OK mode=trace +02:18:02.610 [tid 8008] techfx: OnTechResearched hook ready (regions=15, gate=0/0, fpu_cw=0x027f) +02:18:02.610 [tid 8008] hook: Game::ServerPlayer::OnTechResearched rva=0x00491790 -> va=01311790 MH_CreateHook -> MH_OK (trampoline=01c00fa0) +02:18:02.626 [tid 8008] hook: Game::ServerPlayer::OnTechResearched MH_EnableHook -> MH_OK mode=trace +02:18:02.626 [tid 8008] hook: Game::ServerPlayer::ComputeBudget rva=0x00463030 -> va=012e3030 MH_CreateHook -> MH_OK (trampoline=01c00f80) +02:18:02.642 [tid 8008] hook: Game::ServerPlayer::ComputeBudget MH_EnableHook -> MH_OK mode=trace +02:18:02.642 [tid 8008] hook: Game::ServerSystem::ProcessTurn rva=0x003598e0 -> va=011d98e0 MH_CreateHook -> MH_OK (trampoline=01c00f60) +02:18:02.642 [tid 8008] hook: Game::ServerSystem::ProcessTurn MH_EnableHook -> MH_OK mode=trace +02:18:02.642 [tid 8008] hook: Game::StrategyServer::MoveFleet rva=0x003d9ee0 -> va=01259ee0 MH_CreateHook -> MH_OK (trampoline=01c00f40) +02:18:02.657 [tid 8008] hook: Game::StrategyServer::MoveFleet MH_EnableHook -> MH_OK mode=trace +02:18:02.657 [tid 8008] hook: Game::StrategyServer::ProcessFleetMovement rva=0x003da9a0 mode=off (not installed) +02:18:02.657 [tid 8008] selftest: Shim::SelfTest::Fill mode=off checksum=075ef0c3 records=0 +02:18:02.673 [tid 8008] Application::Initialize called (this=03c98128) diff --git a/verify/results/shim/recap-turn2-loaded.png b/verify/results/shim/recap-turn2-loaded.png new file mode 100644 index 0000000000000000000000000000000000000000..e0bd76e338b394c540f5fccac5c6320dfcee6999 GIT binary patch literal 166954 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

b8|@dL3drIWECp#?5iL>Jzim5-H^a>SL} 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 X9`?4bop=r00KT-;_0?(~+eQ5^@Ja=| literal 0 HcmV?d00001 diff --git a/verify/traces/recap-b1-compare.jsonl.gz b/verify/traces/recap-b1-compare.jsonl.gz new file mode 100644 index 0000000000000000000000000000000000000000..445578559469f3fbcb84c05fab0b836c486b4099 GIT binary patch literal 212499 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 WeaponDef::ParseScript registers each weapon's name with the string table and resolves `requires` against the live TechTree","risk":"high","why":"per-file parsing is M3 scope; ours delegates to the game's own LoadWeapon, so a compare run performs the registration a SECOND time and neither the string table nor the tech tree is a declared region","mitigation":"suspected cause of the sibling section hook's compare crash (docs/M2.md)"},{"what":"allocates 123 WeaponDef objects (0x278 bytes each) on the game heap","risk":"low","why":"the definitions do not exist when the hook is entered, so they cannot be a before-snapshot; the dictionary region compares them by id/name/path","mitigation":""},{"what":"the word at dictionary+0x14","risk":"low","why":"not modelled; emitted as an opaque pointer, which the default policy ignores -- a change is visible in a trace but never a divergence","mitigation":"guard:dict"},{"what":"writes lines to the game log for a missing manifest","risk":"low","why":"log text is not simulation state","mitigation":""},{"what":"std::sort tie order for equal weapon names","risk":"low","why":"msvc_sort.h replays MSVC 2010's introsort, but the shipped data has no tied names, so the tie rule is unexercised rather than verified","mitigation":""}]}},"Game::SectionDictionary::SectionDictionary":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"LoadSection registers each section with the string table and the live TechTree, and may append to the dictionary's own vector","risk":"high","why":"M3 scope; ours delegates to the game's LoadSection after the original has already built all 885 definitions, so the second pass registers duplicates -- the leading hypothesis for this hook's compare-mode crash","mitigation":"see docs/M2.md; compare mode for this hook is not safe to run"},{"what":"post-load validation pass over every definition's @-token against the string table","risk":"medium","why":"runs after the loop and touches no declared region","mitigation":""},{"what":"allocates 885 SectionDef objects (0x3d8 bytes each) on the game heap","risk":"low","why":"they do not exist at hook entry; compared by index/species/id/token","mitigation":""},{"what":"the word at dictionary+0x14","risk":"low","why":"not modelled; emitted as an ignored pointer","mitigation":"guard:dict"},{"what":"the before-snapshot of the object is uninitialised heap","risk":"medium","why":"the hook is on the constructor, so `before` is meaningless and only `after` carries information","mitigation":""}]}},"Game::TechTree::ProcessResearch":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"posts EVENT_RESEARCH_OVERBUDGET on the owner's EventStorage in the same branch that sets node.flag = 2","risk":"high","why":"the message text is composed from the tech name, so ours cannot synthesise it; it would have to be posted through the game's own event API. This is the defect that made a clean compare false: replace mode's autosave differed from the oracle by exactly this one event","mitigation":"region:events (EvNxID now diverges instead of passing silently)"},{"what":"posts EVENT_TECHS_UNLOCKED for nodes that became available this turn","risk":"medium","why":"the trailing unlock loop makes no draw and writes no node, but it does build a names list and post an event","mitigation":"region:events"},{"what":"TechTree::SetResearched on completion: the turn/order stamps, the child unlock cascade, the recursive research of zero-cost children, and the owner's OnTechResearched callback","risk":"high","why":"its own milestone (B2); the callback writes live player state that compare mode must not touch, and it consumes one extra RNG word","mitigation":"guard:player, guard:tree_header"},{"what":"bumps the tree's completion-order counter (TechTree+0x20)","risk":"medium","why":"part of SetResearched; the per-node `order` word is compared but the counter it comes from was not a region","mitigation":"guard:tree_header"},{"what":"writes a completion line to the game log","risk":"low","why":"log text is not simulation state","mitigation":""}]}},"Game::ServerPlayer::OnTechResearched":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"posts EVENT_RESEARCH_COMPLETE / _UNDERBUDGET / _TEMPERANCE on the owner's EventStorage when !silent","risk":"high","why":"the same class of write as B3's defect, and this hook has no replace-mode oracle that could catch it: gotcha 4 in docs/B2.md says a changed save hash on a completion turn is expected and therefore not a finding","mitigation":"guard:player (EventStorage is inline at ServerPlayer+0x29c)"},{"what":"writes every owned system's AI flag (CCC_AIVrus / CCC_AISlv), re-evaluates the arcology civilian cap, cures addiction and clears plague across systems AND ships","risk":"high","why":"writes through pointers to other objects; compare mode must not touch live state, and no region reaches them","mitigation":""},{"what":"the pending plague-cure roll (ServerPlayer::RollResearchEvent)","risk":"high","why":"it draws exactly one word from the strategic generator unconditionally; running it in compare mode would consume real randomness. The two words it guards are still cleared and the record says whether it would have fired","mitigation":"this is the extra draw B3 observed on a completion"},{"what":"TechTree::SetResearched for the Zuul boarding-pod grant","risk":"medium","why":"it would mutate the live tree, and it recurses","mitigation":""},{"what":"allocates or frees the node-bore block at ServerPlayer+0x308","risk":"medium","why":"ours has no allocator the game's runtime could free, so replace mode calls the game's own updater -- which means replace mode never exercises our node-bore selection at all","mitigation":"region:node_bore, declared only when the block already exists"}]}},"Game::ServerSystem::ProcessTurn":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"the addiction sweep raises MoraleEvents, which are constructed and appended to the system's capped morale history","risk":"high","why":"the same class of write as B3's defect. sim::ProcessColonyTurn does compute the morale events (ColonyTurnResult), but the hook never emits them: DescribeMoraleEvents is dead code, so they are neither compared nor logged","mitigation":"guard:system"},{"what":"every callee: the plague pass, imperial and civilian growth, the resource debit, in-orbit refuel, slaves, rebellion and the build queue","risk":"high","why":"declared input boundary -- ProcessTurn is a dispatcher and only the words it writes itself are modelled. The callees raise EVENT_SLAVES_DEAD, EVENT_SYSTEM_REBELLION_CONTINUES, the plague events and SEBuildCompleted, create ships and bump per-player ShipRecords counters","mitigation":"guard:system covers the system object only, not the other objects"},{"what":"ApplyInfraBonus / ApplyPopBonus read the owner's home-system id, and the build queue writes the owning ServerPlayer","risk":"medium","why":"writes through a pointer to another object; no region reaches the player","mitigation":""},{"what":"ProcessRebellion is the pass's only RNG consumer and its draw count is data-dependent","risk":"low","why":"the generator IS a declared region, so a moved post-state is visible and names the system whose rebellion fired -- it is reported, not modelled","mitigation":""},{"what":"replace mode is refused for this hook","risk":"medium","why":"our side models the dispatcher's own writes and none of the callees, so a replace run would silently skip a colony's whole turn. There is therefore no oracle layer behind the compare for this hook","mitigation":""}]}},"Game::StrategyServer::MoveFleet":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"on arrival: dispatches SEFleetArrived and runs one of three arrival handlers by destination kind (enter system / join fleet / stop at point)","risk":"high","why":"declared input boundary -- an arriving call is expected to differ in all of it, and none of it is declared, so the compare says nothing about arrivals","mitigation":"guard:fleet sees the fleet's own words; the event and the system do not"},{"what":"on departure: cancels every still-acting ship (with a log line each) and calls ServerSystem::FleetDeparts, which rewrites the system's ownership bits","risk":"high","why":"writes through pointers to ships and to the system","mitigation":""},{"what":"the tanker top-up refuels other ships in the fleet","risk":"medium","why":"the per-ship range regions would show it, but ours does not model it, so a fleet with a tanker diverges for a known reason","mitigation":""},{"what":"a node-line waypoint's step comes from the stutter profile","risk":"medium","why":"NodeLineStep / BuildStutterSegments are written and unit-tested but not wired in; the hook steps every waypoint type as speed x dt, so a node-line leg is knowingly mis-stepped and only its type is recorded","mitigation":"declared gap: docs/B4.md"},{"what":"a missed probabilistic jump scatters the fleet in a random direction","risk":"medium","why":"the direction is a second draw whose mapping is not modelled; ours leaves the position alone and reports the scatter distance, so the generator region diverges by one word on a miss","mitigation":""},{"what":"the route revalidation and the waypoint list itself","risk":"medium","why":"declared input boundary; the waypoint vector is not a region","mitigation":""}]}},"Game::StrategyServer::ProcessFleetMovement":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"`ours` re-reads the LIVE fleet list after the original has run","risk":"high","why":"the gate-traffic total is computed by the original at the very end of the pass, so a pre-call snapshot would diverge for the wrong reason. It breaks the compare invariant that ours never touches live memory, and it makes this hook's verdict partly self-fulfilling: the input to our arithmetic is the original's own post-move state","mitigation":""},{"what":"drives MoveFleet up to five times per fleet","risk":"high","why":"every undeclared effect of MoveFleet happens inside this call too; the pass schedule is recorded in the arguments but never compared","mitigation":""},{"what":"writes FPdpos into every fleet and clears flags 0x2 and 0x100 on every fleet","risk":"high","why":"no region covers the fleets, only the players' gate-traffic words","mitigation":""},{"what":"OnFleetArrived posts EVENT_FLEET_ARRIVED","risk":"high","why":"the same class of write as B3's defect, and there is no replace mode for this hook, so nothing behind the compare could catch it either","mitigation":""},{"what":"the original accumulates by player->index but writes back by the player's position in the server vector, into a fixed 32-int array with no bounds check","risk":"medium","why":"a real latent bug in the original that our side reproduces only while index == position; the reference save never separates them","mitigation":""},{"what":"PassSchedule() is never called by the hook, and FleetSummary::targetFleetId / relation are never filled","risk":"medium","why":"the header claims ours predicts the call order for a trace to check; that prediction is not actually emitted","mitigation":""}]}}}}} +{"ts":271004810,"hook":"Game::TechTree::ProcessResearch","mode":"compare","call_id":0,"thread":1412,"depth":0,"args":[{"t":"ptr","v":"0x0e93b570","n":"tree"},{"t":"ptr","v":"0x0e90bd70","n":"owner"},{"t":"i32","v":2,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e96ad78","n":"rng"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"list","v":[{"t":"struct","v":{"tech_id":{"t":"i32","v":144},"points":{"t":"i32","v":2889}}}],"n":"alloc"},{"t":"i32","v":0,"n":"overbudget_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":431},"next_index":{"t":"i64","v":193}}}},"overbudget":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9ca6b8"},"kids_end":{"t":"ptr","v":"0x0e9ca6bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9ca6b8"},"kids_end":{"t":"ptr","v":"0x0e9ca6bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9ca668"},"kids_end":{"t":"ptr","v":"0x0e9ca66c"},"kids_cap":{"t":"ptr","v":"0x0e9ca66c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9ca668"},"kids_end":{"t":"ptr","v":"0x0e9ca66c"},"kids_cap":{"t":"ptr","v":"0x0e9ca66c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe4a0"},"kids_end":{"t":"ptr","v":"0x0e8fe4ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe4a0"},"kids_end":{"t":"ptr","v":"0x0e8fe4ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9ca708"},"kids_end":{"t":"ptr","v":"0x0e9ca70c"},"kids_cap":{"t":"ptr","v":"0x0e9ca70c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9ca708"},"kids_end":{"t":"ptr","v":"0x0e9ca70c"},"kids_cap":{"t":"ptr","v":"0x0e9ca70c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e9ca598"},"kids_end":{"t":"ptr","v":"0x0e9ca5a0"},"kids_cap":{"t":"ptr","v":"0x0e9ca5a0"},"unk10":{"t":"ptr","v":"0x3fc00000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x3f800000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e9ca598"},"kids_end":{"t":"ptr","v":"0x0e9ca5a0"},"kids_cap":{"t":"ptr","v":"0x0e9ca5a0"},"unk10":{"t":"ptr","v":"0x3fc00000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x3f800000"}}}},"node[13]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9ca578"},"kids_end":{"t":"ptr","v":"0x0e9ca57c"},"kids_cap":{"t":"ptr","v":"0x0e9ca57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9ca578"},"kids_end":{"t":"ptr","v":"0x0e9ca57c"},"kids_cap":{"t":"ptr","v":"0x0e9ca57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9ca5d8"},"kids_end":{"t":"ptr","v":"0x0e9ca5dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9ca5d8"},"kids_end":{"t":"ptr","v":"0x0e9ca5dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe4e8"},"kids_end":{"t":"ptr","v":"0x0e8fe4f4"},"kids_cap":{"t":"ptr","v":"0x0e8fe4f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe4e8"},"kids_end":{"t":"ptr","v":"0x0e8fe4f4"},"kids_cap":{"t":"ptr","v":"0x0e8fe4f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe3f8"},"kids_end":{"t":"ptr","v":"0x0e8fe404"},"kids_cap":{"t":"ptr","v":"0x0e8fe404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe3f8"},"kids_end":{"t":"ptr","v":"0x0e8fe404"},"kids_cap":{"t":"ptr","v":"0x0e8fe404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9ca738"},"kids_end":{"t":"ptr","v":"0x0e9ca740"},"kids_cap":{"t":"ptr","v":"0x0e9ca740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9ca738"},"kids_end":{"t":"ptr","v":"0x0e9ca740"},"kids_cap":{"t":"ptr","v":"0x0e9ca740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe410"},"kids_end":{"t":"ptr","v":"0x0e8fe41c"},"kids_cap":{"t":"ptr","v":"0x0e8fe41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe410"},"kids_end":{"t":"ptr","v":"0x0e8fe41c"},"kids_cap":{"t":"ptr","v":"0x0e8fe41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9ca698"},"kids_end":{"t":"ptr","v":"0x0e9ca69c"},"kids_cap":{"t":"ptr","v":"0x0e9ca69c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9ca698"},"kids_end":{"t":"ptr","v":"0x0e9ca69c"},"kids_cap":{"t":"ptr","v":"0x0e9ca69c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e9ca548"},"kids_end":{"t":"ptr","v":"0x0e9ca550"},"kids_cap":{"t":"ptr","v":"0x0e9ca550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e9ca548"},"kids_end":{"t":"ptr","v":"0x0e9ca550"},"kids_cap":{"t":"ptr","v":"0x0e9ca550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe428"},"kids_end":{"t":"ptr","v":"0x0e8fe434"},"kids_cap":{"t":"ptr","v":"0x0e8fe434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe428"},"kids_end":{"t":"ptr","v":"0x0e8fe434"},"kids_cap":{"t":"ptr","v":"0x0e8fe434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe530"},"kids_end":{"t":"ptr","v":"0x0e8fe53c"},"kids_cap":{"t":"ptr","v":"0x0e8fe53c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe530"},"kids_end":{"t":"ptr","v":"0x0e8fe53c"},"kids_cap":{"t":"ptr","v":"0x0e8fe53c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9ca628"},"kids_end":{"t":"ptr","v":"0x0e9ca62c"},"kids_cap":{"t":"ptr","v":"0x0e9ca62c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9ca628"},"kids_end":{"t":"ptr","v":"0x0e9ca62c"},"kids_cap":{"t":"ptr","v":"0x0e9ca62c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe440"},"kids_end":{"t":"ptr","v":"0x0e8fe44c"},"kids_cap":{"t":"ptr","v":"0x0e8fe44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe440"},"kids_end":{"t":"ptr","v":"0x0e8fe44c"},"kids_cap":{"t":"ptr","v":"0x0e8fe44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9ca608"},"kids_end":{"t":"ptr","v":"0x0e9ca60c"},"kids_cap":{"t":"ptr","v":"0x0e9ca60c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9ca608"},"kids_end":{"t":"ptr","v":"0x0e9ca60c"},"kids_cap":{"t":"ptr","v":"0x0e9ca60c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9ca5c8"},"kids_end":{"t":"ptr","v":"0x0e9ca5cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9ca5c8"},"kids_end":{"t":"ptr","v":"0x0e9ca5cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9ca6e8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9ca6e8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9ca558"},"kids_end":{"t":"ptr","v":"0x0e9ca55c"},"kids_cap":{"t":"ptr","v":"0x0e9ca55c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9ca558"},"kids_end":{"t":"ptr","v":"0x0e9ca55c"},"kids_cap":{"t":"ptr","v":"0x0e9ca55c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe458"},"kids_end":{"t":"ptr","v":"0x0e8fe464"},"kids_cap":{"t":"ptr","v":"0x0e8fe464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe458"},"kids_end":{"t":"ptr","v":"0x0e8fe464"},"kids_cap":{"t":"ptr","v":"0x0e8fe464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9ca5a8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9ca5a8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9ca5b8"},"kids_end":{"t":"ptr","v":"0x0e9ca5bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9ca5b8"},"kids_end":{"t":"ptr","v":"0x0e9ca5bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9ca6a8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9ca6a8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9ca5e8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9ca5e8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9ca5f8"},"kids_end":{"t":"ptr","v":"0x0e9ca5fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9ca5f8"},"kids_end":{"t":"ptr","v":"0x0e9ca5fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9ca568"},"kids_end":{"t":"ptr","v":"0x0e9ca56c"},"kids_cap":{"t":"ptr","v":"0x0e9ca56c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9ca568"},"kids_end":{"t":"ptr","v":"0x0e9ca56c"},"kids_cap":{"t":"ptr","v":"0x0e9ca56c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9ca588"},"kids_end":{"t":"ptr","v":"0x0e9ca58c"},"kids_cap":{"t":"ptr","v":"0x0e9ca58c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9ca588"},"kids_end":{"t":"ptr","v":"0x0e9ca58c"},"kids_cap":{"t":"ptr","v":"0x0e9ca58c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe470"},"kids_end":{"t":"ptr","v":"0x0e8fe47c"},"kids_cap":{"t":"ptr","v":"0x0e8fe47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe470"},"kids_end":{"t":"ptr","v":"0x0e8fe47c"},"kids_cap":{"t":"ptr","v":"0x0e8fe47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e9ca688"},"kids_end":{"t":"ptr","v":"0x0e9ca690"},"kids_cap":{"t":"ptr","v":"0x0e9ca690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e9ca688"},"kids_end":{"t":"ptr","v":"0x0e9ca690"},"kids_cap":{"t":"ptr","v":"0x0e9ca690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9ca618"},"kids_end":{"t":"ptr","v":"0x0e9ca61c"},"kids_cap":{"t":"ptr","v":"0x0e9ca61c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9ca618"},"kids_end":{"t":"ptr","v":"0x0e9ca61c"},"kids_cap":{"t":"ptr","v":"0x0e9ca61c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9ca728"},"kids_end":{"t":"ptr","v":"0x0e9ca730"},"kids_cap":{"t":"ptr","v":"0x0e9ca730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9ca728"},"kids_end":{"t":"ptr","v":"0x0e9ca730"},"kids_cap":{"t":"ptr","v":"0x0e9ca730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9ca638"},"kids_end":{"t":"ptr","v":"0x0e9ca63c"},"kids_cap":{"t":"ptr","v":"0x0e9ca63c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9ca638"},"kids_end":{"t":"ptr","v":"0x0e9ca63c"},"kids_cap":{"t":"ptr","v":"0x0e9ca63c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e9ca6c8"},"kids_end":{"t":"ptr","v":"0x0e9ca6cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e9ca6c8"},"kids_end":{"t":"ptr","v":"0x0e9ca6cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fe6e0"},"kids_end":{"t":"ptr","v":"0x0e8fe6ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fe6e0"},"kids_end":{"t":"ptr","v":"0x0e8fe6ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e99b508"},"kids_end":{"t":"ptr","v":"0x0e99b528"},"kids_cap":{"t":"ptr","v":"0x0e99b528"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e99b508"},"kids_end":{"t":"ptr","v":"0x0e99b528"},"kids_cap":{"t":"ptr","v":"0x0e99b528"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9ca648"},"kids_end":{"t":"ptr","v":"0x0e9ca64c"},"kids_cap":{"t":"ptr","v":"0x0e9ca64c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9ca648"},"kids_end":{"t":"ptr","v":"0x0e9ca64c"},"kids_cap":{"t":"ptr","v":"0x0e9ca64c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9ca658"},"kids_end":{"t":"ptr","v":"0x0e9ca65c"},"kids_cap":{"t":"ptr","v":"0x0e9ca65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9ca658"},"kids_end":{"t":"ptr","v":"0x0e9ca65c"},"kids_cap":{"t":"ptr","v":"0x0e9ca65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e9ca718"},"kids_end":{"t":"ptr","v":"0x0e9ca720"},"kids_cap":{"t":"ptr","v":"0x0e9ca720"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e9ca718"},"kids_end":{"t":"ptr","v":"0x0e9ca720"},"kids_cap":{"t":"ptr","v":"0x0e9ca720"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9ca678"},"kids_end":{"t":"ptr","v":"0x0e9ca67c"},"kids_cap":{"t":"ptr","v":"0x0e9ca67c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9ca678"},"kids_end":{"t":"ptr","v":"0x0e9ca67c"},"kids_cap":{"t":"ptr","v":"0x0e9ca67c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9ca6d8"},"kids_end":{"t":"ptr","v":"0x0e9ca6dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9ca6d8"},"kids_end":{"t":"ptr","v":"0x0e9ca6dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9ca6f8"},"kids_end":{"t":"ptr","v":"0x0e9ca6fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9ca6f8"},"kids_end":{"t":"ptr","v":"0x0e9ca6fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9ca878"},"kids_end":{"t":"ptr","v":"0x0e9ca87c"},"kids_cap":{"t":"ptr","v":"0x0e9ca87c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9ca878"},"kids_end":{"t":"ptr","v":"0x0e9ca87c"},"kids_cap":{"t":"ptr","v":"0x0e9ca87c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9ca768"},"kids_end":{"t":"ptr","v":"0x0e9ca770"},"kids_cap":{"t":"ptr","v":"0x0e9ca770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9ca768"},"kids_end":{"t":"ptr","v":"0x0e9ca770"},"kids_cap":{"t":"ptr","v":"0x0e9ca770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9ca858"},"kids_end":{"t":"ptr","v":"0x0e9ca85c"},"kids_cap":{"t":"ptr","v":"0x0e9ca85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9ca858"},"kids_end":{"t":"ptr","v":"0x0e9ca85c"},"kids_cap":{"t":"ptr","v":"0x0e9ca85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88ce78"},"kids_end":{"t":"ptr","v":"0x0e88ce8c"},"kids_cap":{"t":"ptr","v":"0x0e88ce8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88ce78"},"kids_end":{"t":"ptr","v":"0x0e88ce8c"},"kids_cap":{"t":"ptr","v":"0x0e88ce8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe650"},"kids_end":{"t":"ptr","v":"0x0e8fe65c"},"kids_cap":{"t":"ptr","v":"0x0e8fe65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe650"},"kids_end":{"t":"ptr","v":"0x0e8fe65c"},"kids_cap":{"t":"ptr","v":"0x0e8fe65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9ca828"},"kids_end":{"t":"ptr","v":"0x0e9ca82c"},"kids_cap":{"t":"ptr","v":"0x0e9ca82c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9ca828"},"kids_end":{"t":"ptr","v":"0x0e9ca82c"},"kids_cap":{"t":"ptr","v":"0x0e9ca82c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9ca868"},"kids_end":{"t":"ptr","v":"0x0e9ca86c"},"kids_cap":{"t":"ptr","v":"0x0e9ca86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9ca868"},"kids_end":{"t":"ptr","v":"0x0e9ca86c"},"kids_cap":{"t":"ptr","v":"0x0e9ca86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9ca8b8"},"kids_end":{"t":"ptr","v":"0x0e9ca8bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9ca8b8"},"kids_end":{"t":"ptr","v":"0x0e9ca8bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9ca788"},"kids_end":{"t":"ptr","v":"0x0e9ca78c"},"kids_cap":{"t":"ptr","v":"0x0e9ca78c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9ca788"},"kids_end":{"t":"ptr","v":"0x0e9ca78c"},"kids_cap":{"t":"ptr","v":"0x0e9ca78c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe668"},"kids_end":{"t":"ptr","v":"0x0e8fe674"},"kids_cap":{"t":"ptr","v":"0x0e8fe674"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe668"},"kids_end":{"t":"ptr","v":"0x0e8fe674"},"kids_cap":{"t":"ptr","v":"0x0e8fe674"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9ca798"},"kids_end":{"t":"ptr","v":"0x0e9ca79c"},"kids_cap":{"t":"ptr","v":"0x0e9ca79c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9ca798"},"kids_end":{"t":"ptr","v":"0x0e9ca79c"},"kids_cap":{"t":"ptr","v":"0x0e9ca79c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe710"},"kids_end":{"t":"ptr","v":"0x0e8fe71c"},"kids_cap":{"t":"ptr","v":"0x0e8fe71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe710"},"kids_end":{"t":"ptr","v":"0x0e8fe71c"},"kids_cap":{"t":"ptr","v":"0x0e8fe71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e9ca8d8"},"kids_end":{"t":"ptr","v":"0x0e9ca8e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e9ca8d8"},"kids_end":{"t":"ptr","v":"0x0e9ca8e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe680"},"kids_end":{"t":"ptr","v":"0x0e8fe690"},"kids_cap":{"t":"ptr","v":"0x0e8fe690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe680"},"kids_end":{"t":"ptr","v":"0x0e8fe690"},"kids_cap":{"t":"ptr","v":"0x0e8fe690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9ca758"},"kids_end":{"t":"ptr","v":"0x0e9ca760"},"kids_cap":{"t":"ptr","v":"0x0e9ca760"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9ca758"},"kids_end":{"t":"ptr","v":"0x0e9ca760"},"kids_cap":{"t":"ptr","v":"0x0e9ca760"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9ca928"},"kids_end":{"t":"ptr","v":"0x0e9ca92c"},"kids_cap":{"t":"ptr","v":"0x0e9ca92c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9ca928"},"kids_end":{"t":"ptr","v":"0x0e9ca92c"},"kids_cap":{"t":"ptr","v":"0x0e9ca92c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe7b8"},"kids_end":{"t":"ptr","v":"0x0e8fe7c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe7c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe7b8"},"kids_end":{"t":"ptr","v":"0x0e8fe7c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe7c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9ca778"},"kids_end":{"t":"ptr","v":"0x0e9ca77c"},"kids_cap":{"t":"ptr","v":"0x0e9ca77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9ca778"},"kids_end":{"t":"ptr","v":"0x0e9ca77c"},"kids_cap":{"t":"ptr","v":"0x0e9ca77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9ca7a8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9ca7a8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e9ca7b8"},"kids_end":{"t":"ptr","v":"0x0e9ca7bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e9ca7b8"},"kids_end":{"t":"ptr","v":"0x0e9ca7bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe698"},"kids_end":{"t":"ptr","v":"0x0e8fe6a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":2879},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe698"},"kids_end":{"t":"ptr","v":"0x0e8fe6a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":5768},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":2},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9ca7c8"},"kids_end":{"t":"ptr","v":"0x0e9ca7cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9ca7c8"},"kids_end":{"t":"ptr","v":"0x0e9ca7cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9ca918"},"kids_end":{"t":"ptr","v":"0x0e9ca91c"},"kids_cap":{"t":"ptr","v":"0x0e9ca91c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9ca918"},"kids_end":{"t":"ptr","v":"0x0e9ca91c"},"kids_cap":{"t":"ptr","v":"0x0e9ca91c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e9ca838"},"kids_end":{"t":"ptr","v":"0x0e9ca83c"},"kids_cap":{"t":"ptr","v":"0x0e9ca83c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e9ca838"},"kids_end":{"t":"ptr","v":"0x0e9ca83c"},"kids_cap":{"t":"ptr","v":"0x0e9ca83c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9ca748"},"kids_end":{"t":"ptr","v":"0x0e9ca750"},"kids_cap":{"t":"ptr","v":"0x0e9ca750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9ca748"},"kids_end":{"t":"ptr","v":"0x0e9ca750"},"kids_cap":{"t":"ptr","v":"0x0e9ca750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9ca8a8"},"kids_end":{"t":"ptr","v":"0x0e9ca8b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9ca8a8"},"kids_end":{"t":"ptr","v":"0x0e9ca8b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9ca938"},"kids_end":{"t":"ptr","v":"0x0e9ca93c"},"kids_cap":{"t":"ptr","v":"0x0e9ca93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9ca938"},"kids_end":{"t":"ptr","v":"0x0e9ca93c"},"kids_cap":{"t":"ptr","v":"0x0e9ca93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9ca848"},"kids_end":{"t":"ptr","v":"0x0e9ca84c"},"kids_cap":{"t":"ptr","v":"0x0e9ca84c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9ca848"},"kids_end":{"t":"ptr","v":"0x0e9ca84c"},"kids_cap":{"t":"ptr","v":"0x0e9ca84c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9ca888"},"kids_end":{"t":"ptr","v":"0x0e9ca88c"},"kids_cap":{"t":"ptr","v":"0x0e9ca88c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9ca888"},"kids_end":{"t":"ptr","v":"0x0e9ca88c"},"kids_cap":{"t":"ptr","v":"0x0e9ca88c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9ca8c8"},"kids_end":{"t":"ptr","v":"0x0e9ca8cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9ca8c8"},"kids_end":{"t":"ptr","v":"0x0e9ca8cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9ca898"},"kids_end":{"t":"ptr","v":"0x0e9ca89c"},"kids_cap":{"t":"ptr","v":"0x0e9ca89c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9ca898"},"kids_end":{"t":"ptr","v":"0x0e9ca89c"},"kids_cap":{"t":"ptr","v":"0x0e9ca89c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9ca8e8"},"kids_end":{"t":"ptr","v":"0x0e9ca8ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca8ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9ca8e8"},"kids_end":{"t":"ptr","v":"0x0e9ca8ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca8ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9ca7e8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9ca7e8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9ca8f8"},"kids_end":{"t":"ptr","v":"0x0e9ca8fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9ca8f8"},"kids_end":{"t":"ptr","v":"0x0e9ca8fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e9ca818"},"kids_end":{"t":"ptr","v":"0x0e9ca81c"},"kids_cap":{"t":"ptr","v":"0x0e9ca81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e9ca818"},"kids_end":{"t":"ptr","v":"0x0e9ca81c"},"kids_cap":{"t":"ptr","v":"0x0e9ca81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e9ca7d8"},"kids_end":{"t":"ptr","v":"0x0e9ca7e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e9ca7d8"},"kids_end":{"t":"ptr","v":"0x0e9ca7e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9ca908"},"kids_end":{"t":"ptr","v":"0x0e9ca910"},"kids_cap":{"t":"ptr","v":"0x0e9ca910"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9ca908"},"kids_end":{"t":"ptr","v":"0x0e9ca910"},"kids_cap":{"t":"ptr","v":"0x0e9ca910"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9ca7f8"},"kids_end":{"t":"ptr","v":"0x0e9ca7fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9ca7f8"},"kids_end":{"t":"ptr","v":"0x0e9ca7fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9ca808"},"kids_end":{"t":"ptr","v":"0x0e9ca810"},"kids_cap":{"t":"ptr","v":"0x0e9ca810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9ca808"},"kids_end":{"t":"ptr","v":"0x0e9ca810"},"kids_cap":{"t":"ptr","v":"0x0e9ca810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9ca9a8"},"kids_end":{"t":"ptr","v":"0x0e9ca9b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9ca9a8"},"kids_end":{"t":"ptr","v":"0x0e9ca9b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9ca9b8"},"kids_end":{"t":"ptr","v":"0x0e9ca9bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9ca9b8"},"kids_end":{"t":"ptr","v":"0x0e9ca9bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe788"},"kids_end":{"t":"ptr","v":"0x0e8fe794"},"kids_cap":{"t":"ptr","v":"0x0e8fe794"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe788"},"kids_end":{"t":"ptr","v":"0x0e8fe794"},"kids_cap":{"t":"ptr","v":"0x0e8fe794"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9caae8"},"kids_end":{"t":"ptr","v":"0x0e9caaec"},"kids_cap":{"t":"ptr","v":"0x0e9caaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9caae8"},"kids_end":{"t":"ptr","v":"0x0e9caaec"},"kids_cap":{"t":"ptr","v":"0x0e9caaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e9caaa8"},"kids_end":{"t":"ptr","v":"0x0e9caab0"},"kids_cap":{"t":"ptr","v":"0x0e9caab0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e9caaa8"},"kids_end":{"t":"ptr","v":"0x0e9caab0"},"kids_cap":{"t":"ptr","v":"0x0e9caab0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9caa38"},"kids_end":{"t":"ptr","v":"0x0e9caa3c"},"kids_cap":{"t":"ptr","v":"0x0e9caa3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9caa38"},"kids_end":{"t":"ptr","v":"0x0e9caa3c"},"kids_cap":{"t":"ptr","v":"0x0e9caa3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9caac8"},"kids_end":{"t":"ptr","v":"0x0e9caacc"},"kids_cap":{"t":"ptr","v":"0x0e9caacc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9caac8"},"kids_end":{"t":"ptr","v":"0x0e9caacc"},"kids_cap":{"t":"ptr","v":"0x0e9caacc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe860"},"kids_end":{"t":"ptr","v":"0x0e8fe870"},"kids_cap":{"t":"ptr","v":"0x0e8fe870"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe860"},"kids_end":{"t":"ptr","v":"0x0e8fe870"},"kids_cap":{"t":"ptr","v":"0x0e8fe870"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e9caa98"},"kids_end":{"t":"ptr","v":"0x0e9caaa0"},"kids_cap":{"t":"ptr","v":"0x0e9caaa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e9caa98"},"kids_end":{"t":"ptr","v":"0x0e9caaa0"},"kids_cap":{"t":"ptr","v":"0x0e9caaa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9ca988"},"kids_end":{"t":"ptr","v":"0x0e9ca98c"},"kids_cap":{"t":"ptr","v":"0x0e9ca98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9ca988"},"kids_end":{"t":"ptr","v":"0x0e9ca98c"},"kids_cap":{"t":"ptr","v":"0x0e9ca98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe878"},"kids_end":{"t":"ptr","v":"0x0e8fe888"},"kids_cap":{"t":"ptr","v":"0x0e8fe888"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe878"},"kids_end":{"t":"ptr","v":"0x0e8fe888"},"kids_cap":{"t":"ptr","v":"0x0e8fe888"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9cab28"},"kids_end":{"t":"ptr","v":"0x0e9cab30"},"kids_cap":{"t":"ptr","v":"0x0e9cab30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9cab28"},"kids_end":{"t":"ptr","v":"0x0e9cab30"},"kids_cap":{"t":"ptr","v":"0x0e9cab30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9caaf8"},"kids_end":{"t":"ptr","v":"0x0e9caafc"},"kids_cap":{"t":"ptr","v":"0x0e9caafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9caaf8"},"kids_end":{"t":"ptr","v":"0x0e9caafc"},"kids_cap":{"t":"ptr","v":"0x0e9caafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e9cab38"},"kids_end":{"t":"ptr","v":"0x0e9cab3c"},"kids_cap":{"t":"ptr","v":"0x0e9cab3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e9cab38"},"kids_end":{"t":"ptr","v":"0x0e9cab3c"},"kids_cap":{"t":"ptr","v":"0x0e9cab3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e9cab08"},"kids_end":{"t":"ptr","v":"0x0e9cab10"},"kids_cap":{"t":"ptr","v":"0x0e9cab10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e9cab08"},"kids_end":{"t":"ptr","v":"0x0e9cab10"},"kids_cap":{"t":"ptr","v":"0x0e9cab10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9caa08"},"kids_end":{"t":"ptr","v":"0x0e9caa0c"},"kids_cap":{"t":"ptr","v":"0x0e9caa0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9caa08"},"kids_end":{"t":"ptr","v":"0x0e9caa0c"},"kids_cap":{"t":"ptr","v":"0x0e9caa0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9ca9c8"},"kids_end":{"t":"ptr","v":"0x0e9ca9d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9ca9c8"},"kids_end":{"t":"ptr","v":"0x0e9ca9d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e8fe7d0"},"kids_end":{"t":"ptr","v":"0x0e8fe7e0"},"kids_cap":{"t":"ptr","v":"0x0e8fe7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e8fe7d0"},"kids_end":{"t":"ptr","v":"0x0e8fe7e0"},"kids_cap":{"t":"ptr","v":"0x0e8fe7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9ca9d8"},"kids_end":{"t":"ptr","v":"0x0e9ca9dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9ca9d8"},"kids_end":{"t":"ptr","v":"0x0e9ca9dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9caa58"},"kids_end":{"t":"ptr","v":"0x0e9caa5c"},"kids_cap":{"t":"ptr","v":"0x0e9caa5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9caa58"},"kids_end":{"t":"ptr","v":"0x0e9caa5c"},"kids_cap":{"t":"ptr","v":"0x0e9caa5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9caa48"},"kids_end":{"t":"ptr","v":"0x0e9caa50"},"kids_cap":{"t":"ptr","v":"0x0e9caa50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9caa48"},"kids_end":{"t":"ptr","v":"0x0e9caa50"},"kids_cap":{"t":"ptr","v":"0x0e9caa50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9caa68"},"kids_end":{"t":"ptr","v":"0x0e9caa6c"},"kids_cap":{"t":"ptr","v":"0x0e9caa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9caa68"},"kids_end":{"t":"ptr","v":"0x0e9caa6c"},"kids_cap":{"t":"ptr","v":"0x0e9caa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9ca9e8"},"kids_end":{"t":"ptr","v":"0x0e9ca9ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca9ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9ca9e8"},"kids_end":{"t":"ptr","v":"0x0e9ca9ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca9ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe590"},"kids_end":{"t":"ptr","v":"0x0e8fe59c"},"kids_cap":{"t":"ptr","v":"0x0e8fe59c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe590"},"kids_end":{"t":"ptr","v":"0x0e8fe59c"},"kids_cap":{"t":"ptr","v":"0x0e8fe59c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe5f0"},"kids_end":{"t":"ptr","v":"0x0e8fe5fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe5f0"},"kids_end":{"t":"ptr","v":"0x0e8fe5fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe6b0"},"kids_end":{"t":"ptr","v":"0x0e8fe6bc"},"kids_cap":{"t":"ptr","v":"0x0e8fe6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe6b0"},"kids_end":{"t":"ptr","v":"0x0e8fe6bc"},"kids_cap":{"t":"ptr","v":"0x0e8fe6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe608"},"kids_end":{"t":"ptr","v":"0x0e8fe614"},"kids_cap":{"t":"ptr","v":"0x0e8fe614"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe608"},"kids_end":{"t":"ptr","v":"0x0e8fe614"},"kids_cap":{"t":"ptr","v":"0x0e8fe614"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe5a8"},"kids_end":{"t":"ptr","v":"0x0e8fe5b4"},"kids_cap":{"t":"ptr","v":"0x0e8fe5b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe5a8"},"kids_end":{"t":"ptr","v":"0x0e8fe5b4"},"kids_cap":{"t":"ptr","v":"0x0e8fe5b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88cdd8"},"kids_end":{"t":"ptr","v":"0x0e88cdf0"},"kids_cap":{"t":"ptr","v":"0x0e88cdf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88cdd8"},"kids_end":{"t":"ptr","v":"0x0e88cdf0"},"kids_cap":{"t":"ptr","v":"0x0e88cdf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e9caab8"},"kids_end":{"t":"ptr","v":"0x0e9caac0"},"kids_cap":{"t":"ptr","v":"0x0e9caac0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e9caab8"},"kids_end":{"t":"ptr","v":"0x0e9caac0"},"kids_cap":{"t":"ptr","v":"0x0e9caac0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9cab18"},"kids_end":{"t":"ptr","v":"0x0e9cab20"},"kids_cap":{"t":"ptr","v":"0x0e9cab20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9cab18"},"kids_end":{"t":"ptr","v":"0x0e9cab20"},"kids_cap":{"t":"ptr","v":"0x0e9cab20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9caad8"},"kids_end":{"t":"ptr","v":"0x0e9caae0"},"kids_cap":{"t":"ptr","v":"0x0e9caae0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9caad8"},"kids_end":{"t":"ptr","v":"0x0e9caae0"},"kids_cap":{"t":"ptr","v":"0x0e9caae0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9ca958"},"kids_end":{"t":"ptr","v":"0x0e9ca960"},"kids_cap":{"t":"ptr","v":"0x0e9ca960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9ca958"},"kids_end":{"t":"ptr","v":"0x0e9ca960"},"kids_cap":{"t":"ptr","v":"0x0e9ca960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9caa78"},"kids_end":{"t":"ptr","v":"0x0e9caa7c"},"kids_cap":{"t":"ptr","v":"0x0e9caa7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9caa78"},"kids_end":{"t":"ptr","v":"0x0e9caa7c"},"kids_cap":{"t":"ptr","v":"0x0e9caa7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9caa88"},"kids_end":{"t":"ptr","v":"0x0e9caa8c"},"kids_cap":{"t":"ptr","v":"0x0e9caa8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9caa88"},"kids_end":{"t":"ptr","v":"0x0e9caa8c"},"kids_cap":{"t":"ptr","v":"0x0e9caa8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca998"},"kids_end":{"t":"ptr","v":"0x0e9ca99c"},"kids_cap":{"t":"ptr","v":"0x0e9ca99c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca998"},"kids_end":{"t":"ptr","v":"0x0e9ca99c"},"kids_cap":{"t":"ptr","v":"0x0e9ca99c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9ca948"},"kids_end":{"t":"ptr","v":"0x0e9ca94c"},"kids_cap":{"t":"ptr","v":"0x0e9ca94c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9ca948"},"kids_end":{"t":"ptr","v":"0x0e9ca94c"},"kids_cap":{"t":"ptr","v":"0x0e9ca94c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca968"},"kids_end":{"t":"ptr","v":"0x0e9ca96c"},"kids_cap":{"t":"ptr","v":"0x0e9ca96c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca968"},"kids_end":{"t":"ptr","v":"0x0e9ca96c"},"kids_cap":{"t":"ptr","v":"0x0e9ca96c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca9f8"},"kids_end":{"t":"ptr","v":"0x0e9ca9fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca9f8"},"kids_end":{"t":"ptr","v":"0x0e9ca9fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca978"},"kids_end":{"t":"ptr","v":"0x0e9ca97c"},"kids_cap":{"t":"ptr","v":"0x0e9ca97c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca978"},"kids_end":{"t":"ptr","v":"0x0e9ca97c"},"kids_cap":{"t":"ptr","v":"0x0e9ca97c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9caa18"},"kids_end":{"t":"ptr","v":"0x0e9caa1c"},"kids_cap":{"t":"ptr","v":"0x0e9caa1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9caa18"},"kids_end":{"t":"ptr","v":"0x0e9caa1c"},"kids_cap":{"t":"ptr","v":"0x0e9caa1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9caa28"},"kids_end":{"t":"ptr","v":"0x0e9caa2c"},"kids_cap":{"t":"ptr","v":"0x0e9caa2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9caa28"},"kids_end":{"t":"ptr","v":"0x0e9caa2c"},"kids_cap":{"t":"ptr","v":"0x0e9caa2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9cacd8"},"kids_end":{"t":"ptr","v":"0x0e9cacdc"},"kids_cap":{"t":"ptr","v":"0x0e9cacdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9cacd8"},"kids_end":{"t":"ptr","v":"0x0e9cacdc"},"kids_cap":{"t":"ptr","v":"0x0e9cacdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9caca8"},"kids_end":{"t":"ptr","v":"0x0e9cacac"},"kids_cap":{"t":"ptr","v":"0x0e9cacac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9caca8"},"kids_end":{"t":"ptr","v":"0x0e9cacac"},"kids_cap":{"t":"ptr","v":"0x0e9cacac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"before":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":48},"next_id":{"t":"i32","v":3},"vec_begin":{"t":"ptr","v":"0x364b6998"},"vec_end":{"t":"ptr","v":"0x364b69c8"},"vec_cap":{"t":"ptr","v":"0x364b69c8"}}},"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":48},"next_id":{"t":"i32","v":4},"vec_begin":{"t":"ptr","v":"0x364b6998"},"vec_end":{"t":"ptr","v":"0x364b69c8"},"vec_cap":{"t":"ptr","v":"0x364b69c8"}}}}},"ours":{"ret":null,"side":{"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":431},"next_index":{"t":"i64","v":193}}}},"overbudget":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9ca6b8"},"kids_end":{"t":"ptr","v":"0x0e9ca6bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9ca668"},"kids_end":{"t":"ptr","v":"0x0e9ca66c"},"kids_cap":{"t":"ptr","v":"0x0e9ca66c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe4a0"},"kids_end":{"t":"ptr","v":"0x0e8fe4ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9ca708"},"kids_end":{"t":"ptr","v":"0x0e9ca70c"},"kids_cap":{"t":"ptr","v":"0x0e9ca70c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e9ca598"},"kids_end":{"t":"ptr","v":"0x0e9ca5a0"},"kids_cap":{"t":"ptr","v":"0x0e9ca5a0"},"unk10":{"t":"ptr","v":"0x3fc00000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x3f800000"}}}},"node[13]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9ca578"},"kids_end":{"t":"ptr","v":"0x0e9ca57c"},"kids_cap":{"t":"ptr","v":"0x0e9ca57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9ca5d8"},"kids_end":{"t":"ptr","v":"0x0e9ca5dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe4e8"},"kids_end":{"t":"ptr","v":"0x0e8fe4f4"},"kids_cap":{"t":"ptr","v":"0x0e8fe4f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe3f8"},"kids_end":{"t":"ptr","v":"0x0e8fe404"},"kids_cap":{"t":"ptr","v":"0x0e8fe404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9ca738"},"kids_end":{"t":"ptr","v":"0x0e9ca740"},"kids_cap":{"t":"ptr","v":"0x0e9ca740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe410"},"kids_end":{"t":"ptr","v":"0x0e8fe41c"},"kids_cap":{"t":"ptr","v":"0x0e8fe41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9ca698"},"kids_end":{"t":"ptr","v":"0x0e9ca69c"},"kids_cap":{"t":"ptr","v":"0x0e9ca69c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e9ca548"},"kids_end":{"t":"ptr","v":"0x0e9ca550"},"kids_cap":{"t":"ptr","v":"0x0e9ca550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe428"},"kids_end":{"t":"ptr","v":"0x0e8fe434"},"kids_cap":{"t":"ptr","v":"0x0e8fe434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe530"},"kids_end":{"t":"ptr","v":"0x0e8fe53c"},"kids_cap":{"t":"ptr","v":"0x0e8fe53c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9ca628"},"kids_end":{"t":"ptr","v":"0x0e9ca62c"},"kids_cap":{"t":"ptr","v":"0x0e9ca62c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe440"},"kids_end":{"t":"ptr","v":"0x0e8fe44c"},"kids_cap":{"t":"ptr","v":"0x0e8fe44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9ca608"},"kids_end":{"t":"ptr","v":"0x0e9ca60c"},"kids_cap":{"t":"ptr","v":"0x0e9ca60c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9ca5c8"},"kids_end":{"t":"ptr","v":"0x0e9ca5cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9ca6e8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9ca558"},"kids_end":{"t":"ptr","v":"0x0e9ca55c"},"kids_cap":{"t":"ptr","v":"0x0e9ca55c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe458"},"kids_end":{"t":"ptr","v":"0x0e8fe464"},"kids_cap":{"t":"ptr","v":"0x0e8fe464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9ca5a8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9ca5b8"},"kids_end":{"t":"ptr","v":"0x0e9ca5bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9ca6a8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9ca5e8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9ca5f8"},"kids_end":{"t":"ptr","v":"0x0e9ca5fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9ca568"},"kids_end":{"t":"ptr","v":"0x0e9ca56c"},"kids_cap":{"t":"ptr","v":"0x0e9ca56c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9ca588"},"kids_end":{"t":"ptr","v":"0x0e9ca58c"},"kids_cap":{"t":"ptr","v":"0x0e9ca58c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe470"},"kids_end":{"t":"ptr","v":"0x0e8fe47c"},"kids_cap":{"t":"ptr","v":"0x0e8fe47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e9ca688"},"kids_end":{"t":"ptr","v":"0x0e9ca690"},"kids_cap":{"t":"ptr","v":"0x0e9ca690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9ca618"},"kids_end":{"t":"ptr","v":"0x0e9ca61c"},"kids_cap":{"t":"ptr","v":"0x0e9ca61c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9ca728"},"kids_end":{"t":"ptr","v":"0x0e9ca730"},"kids_cap":{"t":"ptr","v":"0x0e9ca730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9ca638"},"kids_end":{"t":"ptr","v":"0x0e9ca63c"},"kids_cap":{"t":"ptr","v":"0x0e9ca63c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e9ca6c8"},"kids_end":{"t":"ptr","v":"0x0e9ca6cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fe6e0"},"kids_end":{"t":"ptr","v":"0x0e8fe6ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e99b508"},"kids_end":{"t":"ptr","v":"0x0e99b528"},"kids_cap":{"t":"ptr","v":"0x0e99b528"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9ca648"},"kids_end":{"t":"ptr","v":"0x0e9ca64c"},"kids_cap":{"t":"ptr","v":"0x0e9ca64c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9ca658"},"kids_end":{"t":"ptr","v":"0x0e9ca65c"},"kids_cap":{"t":"ptr","v":"0x0e9ca65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e9ca718"},"kids_end":{"t":"ptr","v":"0x0e9ca720"},"kids_cap":{"t":"ptr","v":"0x0e9ca720"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9ca678"},"kids_end":{"t":"ptr","v":"0x0e9ca67c"},"kids_cap":{"t":"ptr","v":"0x0e9ca67c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9ca6d8"},"kids_end":{"t":"ptr","v":"0x0e9ca6dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9ca6f8"},"kids_end":{"t":"ptr","v":"0x0e9ca6fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9ca878"},"kids_end":{"t":"ptr","v":"0x0e9ca87c"},"kids_cap":{"t":"ptr","v":"0x0e9ca87c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9ca768"},"kids_end":{"t":"ptr","v":"0x0e9ca770"},"kids_cap":{"t":"ptr","v":"0x0e9ca770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9ca858"},"kids_end":{"t":"ptr","v":"0x0e9ca85c"},"kids_cap":{"t":"ptr","v":"0x0e9ca85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88ce78"},"kids_end":{"t":"ptr","v":"0x0e88ce8c"},"kids_cap":{"t":"ptr","v":"0x0e88ce8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe650"},"kids_end":{"t":"ptr","v":"0x0e8fe65c"},"kids_cap":{"t":"ptr","v":"0x0e8fe65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9ca828"},"kids_end":{"t":"ptr","v":"0x0e9ca82c"},"kids_cap":{"t":"ptr","v":"0x0e9ca82c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9ca868"},"kids_end":{"t":"ptr","v":"0x0e9ca86c"},"kids_cap":{"t":"ptr","v":"0x0e9ca86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9ca8b8"},"kids_end":{"t":"ptr","v":"0x0e9ca8bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9ca788"},"kids_end":{"t":"ptr","v":"0x0e9ca78c"},"kids_cap":{"t":"ptr","v":"0x0e9ca78c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe668"},"kids_end":{"t":"ptr","v":"0x0e8fe674"},"kids_cap":{"t":"ptr","v":"0x0e8fe674"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9ca798"},"kids_end":{"t":"ptr","v":"0x0e9ca79c"},"kids_cap":{"t":"ptr","v":"0x0e9ca79c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe710"},"kids_end":{"t":"ptr","v":"0x0e8fe71c"},"kids_cap":{"t":"ptr","v":"0x0e8fe71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e9ca8d8"},"kids_end":{"t":"ptr","v":"0x0e9ca8e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe680"},"kids_end":{"t":"ptr","v":"0x0e8fe690"},"kids_cap":{"t":"ptr","v":"0x0e8fe690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9ca758"},"kids_end":{"t":"ptr","v":"0x0e9ca760"},"kids_cap":{"t":"ptr","v":"0x0e9ca760"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9ca928"},"kids_end":{"t":"ptr","v":"0x0e9ca92c"},"kids_cap":{"t":"ptr","v":"0x0e9ca92c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe7b8"},"kids_end":{"t":"ptr","v":"0x0e8fe7c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe7c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9ca778"},"kids_end":{"t":"ptr","v":"0x0e9ca77c"},"kids_cap":{"t":"ptr","v":"0x0e9ca77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9ca7a8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e9ca7b8"},"kids_end":{"t":"ptr","v":"0x0e9ca7bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe698"},"kids_end":{"t":"ptr","v":"0x0e8fe6a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":5768},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":2},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9ca7c8"},"kids_end":{"t":"ptr","v":"0x0e9ca7cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9ca918"},"kids_end":{"t":"ptr","v":"0x0e9ca91c"},"kids_cap":{"t":"ptr","v":"0x0e9ca91c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e9ca838"},"kids_end":{"t":"ptr","v":"0x0e9ca83c"},"kids_cap":{"t":"ptr","v":"0x0e9ca83c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9ca748"},"kids_end":{"t":"ptr","v":"0x0e9ca750"},"kids_cap":{"t":"ptr","v":"0x0e9ca750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9ca8a8"},"kids_end":{"t":"ptr","v":"0x0e9ca8b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9ca938"},"kids_end":{"t":"ptr","v":"0x0e9ca93c"},"kids_cap":{"t":"ptr","v":"0x0e9ca93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9ca848"},"kids_end":{"t":"ptr","v":"0x0e9ca84c"},"kids_cap":{"t":"ptr","v":"0x0e9ca84c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9ca888"},"kids_end":{"t":"ptr","v":"0x0e9ca88c"},"kids_cap":{"t":"ptr","v":"0x0e9ca88c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9ca8c8"},"kids_end":{"t":"ptr","v":"0x0e9ca8cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9ca898"},"kids_end":{"t":"ptr","v":"0x0e9ca89c"},"kids_cap":{"t":"ptr","v":"0x0e9ca89c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9ca8e8"},"kids_end":{"t":"ptr","v":"0x0e9ca8ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca8ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9ca7e8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9ca8f8"},"kids_end":{"t":"ptr","v":"0x0e9ca8fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e9ca818"},"kids_end":{"t":"ptr","v":"0x0e9ca81c"},"kids_cap":{"t":"ptr","v":"0x0e9ca81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e9ca7d8"},"kids_end":{"t":"ptr","v":"0x0e9ca7e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9ca908"},"kids_end":{"t":"ptr","v":"0x0e9ca910"},"kids_cap":{"t":"ptr","v":"0x0e9ca910"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9ca7f8"},"kids_end":{"t":"ptr","v":"0x0e9ca7fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9ca808"},"kids_end":{"t":"ptr","v":"0x0e9ca810"},"kids_cap":{"t":"ptr","v":"0x0e9ca810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9ca9a8"},"kids_end":{"t":"ptr","v":"0x0e9ca9b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9ca9b8"},"kids_end":{"t":"ptr","v":"0x0e9ca9bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe788"},"kids_end":{"t":"ptr","v":"0x0e8fe794"},"kids_cap":{"t":"ptr","v":"0x0e8fe794"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9caae8"},"kids_end":{"t":"ptr","v":"0x0e9caaec"},"kids_cap":{"t":"ptr","v":"0x0e9caaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e9caaa8"},"kids_end":{"t":"ptr","v":"0x0e9caab0"},"kids_cap":{"t":"ptr","v":"0x0e9caab0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9caa38"},"kids_end":{"t":"ptr","v":"0x0e9caa3c"},"kids_cap":{"t":"ptr","v":"0x0e9caa3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9caac8"},"kids_end":{"t":"ptr","v":"0x0e9caacc"},"kids_cap":{"t":"ptr","v":"0x0e9caacc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe860"},"kids_end":{"t":"ptr","v":"0x0e8fe870"},"kids_cap":{"t":"ptr","v":"0x0e8fe870"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e9caa98"},"kids_end":{"t":"ptr","v":"0x0e9caaa0"},"kids_cap":{"t":"ptr","v":"0x0e9caaa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9ca988"},"kids_end":{"t":"ptr","v":"0x0e9ca98c"},"kids_cap":{"t":"ptr","v":"0x0e9ca98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe878"},"kids_end":{"t":"ptr","v":"0x0e8fe888"},"kids_cap":{"t":"ptr","v":"0x0e8fe888"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9cab28"},"kids_end":{"t":"ptr","v":"0x0e9cab30"},"kids_cap":{"t":"ptr","v":"0x0e9cab30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9caaf8"},"kids_end":{"t":"ptr","v":"0x0e9caafc"},"kids_cap":{"t":"ptr","v":"0x0e9caafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e9cab38"},"kids_end":{"t":"ptr","v":"0x0e9cab3c"},"kids_cap":{"t":"ptr","v":"0x0e9cab3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e9cab08"},"kids_end":{"t":"ptr","v":"0x0e9cab10"},"kids_cap":{"t":"ptr","v":"0x0e9cab10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9caa08"},"kids_end":{"t":"ptr","v":"0x0e9caa0c"},"kids_cap":{"t":"ptr","v":"0x0e9caa0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9ca9c8"},"kids_end":{"t":"ptr","v":"0x0e9ca9d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e8fe7d0"},"kids_end":{"t":"ptr","v":"0x0e8fe7e0"},"kids_cap":{"t":"ptr","v":"0x0e8fe7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9ca9d8"},"kids_end":{"t":"ptr","v":"0x0e9ca9dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9caa58"},"kids_end":{"t":"ptr","v":"0x0e9caa5c"},"kids_cap":{"t":"ptr","v":"0x0e9caa5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9caa48"},"kids_end":{"t":"ptr","v":"0x0e9caa50"},"kids_cap":{"t":"ptr","v":"0x0e9caa50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9caa68"},"kids_end":{"t":"ptr","v":"0x0e9caa6c"},"kids_cap":{"t":"ptr","v":"0x0e9caa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9ca9e8"},"kids_end":{"t":"ptr","v":"0x0e9ca9ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca9ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe590"},"kids_end":{"t":"ptr","v":"0x0e8fe59c"},"kids_cap":{"t":"ptr","v":"0x0e8fe59c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe5f0"},"kids_end":{"t":"ptr","v":"0x0e8fe5fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe6b0"},"kids_end":{"t":"ptr","v":"0x0e8fe6bc"},"kids_cap":{"t":"ptr","v":"0x0e8fe6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe608"},"kids_end":{"t":"ptr","v":"0x0e8fe614"},"kids_cap":{"t":"ptr","v":"0x0e8fe614"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe5a8"},"kids_end":{"t":"ptr","v":"0x0e8fe5b4"},"kids_cap":{"t":"ptr","v":"0x0e8fe5b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88cdd8"},"kids_end":{"t":"ptr","v":"0x0e88cdf0"},"kids_cap":{"t":"ptr","v":"0x0e88cdf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e9caab8"},"kids_end":{"t":"ptr","v":"0x0e9caac0"},"kids_cap":{"t":"ptr","v":"0x0e9caac0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9cab18"},"kids_end":{"t":"ptr","v":"0x0e9cab20"},"kids_cap":{"t":"ptr","v":"0x0e9cab20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9caad8"},"kids_end":{"t":"ptr","v":"0x0e9caae0"},"kids_cap":{"t":"ptr","v":"0x0e9caae0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9ca958"},"kids_end":{"t":"ptr","v":"0x0e9ca960"},"kids_cap":{"t":"ptr","v":"0x0e9ca960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9caa78"},"kids_end":{"t":"ptr","v":"0x0e9caa7c"},"kids_cap":{"t":"ptr","v":"0x0e9caa7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9caa88"},"kids_end":{"t":"ptr","v":"0x0e9caa8c"},"kids_cap":{"t":"ptr","v":"0x0e9caa8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca998"},"kids_end":{"t":"ptr","v":"0x0e9ca99c"},"kids_cap":{"t":"ptr","v":"0x0e9ca99c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9ca948"},"kids_end":{"t":"ptr","v":"0x0e9ca94c"},"kids_cap":{"t":"ptr","v":"0x0e9ca94c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca968"},"kids_end":{"t":"ptr","v":"0x0e9ca96c"},"kids_cap":{"t":"ptr","v":"0x0e9ca96c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca9f8"},"kids_end":{"t":"ptr","v":"0x0e9ca9fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca978"},"kids_end":{"t":"ptr","v":"0x0e9ca97c"},"kids_cap":{"t":"ptr","v":"0x0e9ca97c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9caa18"},"kids_end":{"t":"ptr","v":"0x0e9caa1c"},"kids_cap":{"t":"ptr","v":"0x0e9caa1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9caa28"},"kids_end":{"t":"ptr","v":"0x0e9caa2c"},"kids_cap":{"t":"ptr","v":"0x0e9caa2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9cacd8"},"kids_end":{"t":"ptr","v":"0x0e9cacdc"},"kids_cap":{"t":"ptr","v":"0x0e9cacdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9caca8"},"kids_end":{"t":"ptr","v":"0x0e9cacac"},"kids_cap":{"t":"ptr","v":"0x0e9cacac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":48},"next_id":{"t":"i32","v":3},"vec_begin":{"t":"ptr","v":"0x364b6998"},"vec_end":{"t":"ptr","v":"0x364b69c8"},"vec_cap":{"t":"ptr","v":"0x364b69c8"}}}}}},"diverged":true,"diff":[{"path":"side.events.after.v.next_id","why":"exact","orig":{"t":"i32","v":4},"ours":{"t":"i32","v":3}}],"coverage":{"guards":["player","tree_header"],"undeclared":[],"n":0}} +{"ts":271025481,"hook":"Game::TechTree::ProcessResearch","mode":"compare","call_id":1,"thread":1412,"depth":0,"args":[{"t":"ptr","v":"0x0e93b6c0","n":"tree"},{"t":"ptr","v":"0x0e906b68","n":"owner"},{"t":"i32","v":0,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e96ad78","n":"rng"},{"t":"i32","v":431,"n":"rng_left_in"},{"t":"list","v":[{"t":"struct","v":{"tech_id":{"t":"i32","v":90},"points":{"t":"i32","v":0}}}],"n":"alloc"},{"t":"i32","v":0,"n":"overbudget_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":431},"next_index":{"t":"i64","v":193}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":431},"next_index":{"t":"i64","v":193}}}},"overbudget":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9cb2e8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9cb2e8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cb1a8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cb1a8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cb158"},"kids_end":{"t":"ptr","v":"0x0e9cb15c"},"kids_cap":{"t":"ptr","v":"0x0e9cb15c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cb158"},"kids_end":{"t":"ptr","v":"0x0e9cb15c"},"kids_cap":{"t":"ptr","v":"0x0e9cb15c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9cb168"},"kids_end":{"t":"ptr","v":"0x0e9cb170"},"kids_cap":{"t":"ptr","v":"0x0e9cb170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9cb168"},"kids_end":{"t":"ptr","v":"0x0e9cb170"},"kids_cap":{"t":"ptr","v":"0x0e9cb170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9cb178"},"kids_end":{"t":"ptr","v":"0x0e9cb180"},"kids_cap":{"t":"ptr","v":"0x0e9cb180"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9cb178"},"kids_end":{"t":"ptr","v":"0x0e9cb180"},"kids_cap":{"t":"ptr","v":"0x0e9cb180"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cb188"},"kids_end":{"t":"ptr","v":"0x0e9cb18c"},"kids_cap":{"t":"ptr","v":"0x0e9cb18c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cb188"},"kids_end":{"t":"ptr","v":"0x0e9cb18c"},"kids_cap":{"t":"ptr","v":"0x0e9cb18c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9cb1b8"},"kids_end":{"t":"ptr","v":"0x0e9cb1bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9cb1b8"},"kids_end":{"t":"ptr","v":"0x0e9cb1bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9cb288"},"kids_end":{"t":"ptr","v":"0x0e9cb28c"},"kids_cap":{"t":"ptr","v":"0x0e9cb28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9cb288"},"kids_end":{"t":"ptr","v":"0x0e9cb28c"},"kids_cap":{"t":"ptr","v":"0x0e9cb28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe8f0"},"kids_end":{"t":"ptr","v":"0x0e8fe8fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe8f0"},"kids_end":{"t":"ptr","v":"0x0e8fe8fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cb2d8"},"kids_end":{"t":"ptr","v":"0x0e9cb2e0"},"kids_cap":{"t":"ptr","v":"0x0e9cb2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cb2d8"},"kids_end":{"t":"ptr","v":"0x0e9cb2e0"},"kids_cap":{"t":"ptr","v":"0x0e9cb2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe950"},"kids_end":{"t":"ptr","v":"0x0e8fe960"},"kids_cap":{"t":"ptr","v":"0x0e8fe960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe950"},"kids_end":{"t":"ptr","v":"0x0e8fe960"},"kids_cap":{"t":"ptr","v":"0x0e8fe960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cb1c8"},"kids_end":{"t":"ptr","v":"0x0e9cb1cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cb1c8"},"kids_end":{"t":"ptr","v":"0x0e9cb1cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cb1d8"},"kids_end":{"t":"ptr","v":"0x0e9cb1dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cb1d8"},"kids_end":{"t":"ptr","v":"0x0e9cb1dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fe908"},"kids_end":{"t":"ptr","v":"0x0e8fe914"},"kids_cap":{"t":"ptr","v":"0x0e8fe914"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fe908"},"kids_end":{"t":"ptr","v":"0x0e8fe914"},"kids_cap":{"t":"ptr","v":"0x0e8fe914"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9cb238"},"kids_end":{"t":"ptr","v":"0x0e9cb23c"},"kids_cap":{"t":"ptr","v":"0x0e9cb23c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9cb238"},"kids_end":{"t":"ptr","v":"0x0e9cb23c"},"kids_cap":{"t":"ptr","v":"0x0e9cb23c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cb1e8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cb1e8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9cb2f8"},"kids_end":{"t":"ptr","v":"0x0e9cb2fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb2fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9cb2f8"},"kids_end":{"t":"ptr","v":"0x0e9cb2fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb2fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe968"},"kids_end":{"t":"ptr","v":"0x0e8fe974"},"kids_cap":{"t":"ptr","v":"0x0e8fe974"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe968"},"kids_end":{"t":"ptr","v":"0x0e8fe974"},"kids_cap":{"t":"ptr","v":"0x0e8fe974"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fcce8"},"kids_end":{"t":"ptr","v":"0x0e8fccf8"},"kids_cap":{"t":"ptr","v":"0x0e8fccf8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fcce8"},"kids_end":{"t":"ptr","v":"0x0e8fccf8"},"kids_cap":{"t":"ptr","v":"0x0e8fccf8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cb318"},"kids_end":{"t":"ptr","v":"0x0e9cb31c"},"kids_cap":{"t":"ptr","v":"0x0e9cb31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cb318"},"kids_end":{"t":"ptr","v":"0x0e9cb31c"},"kids_cap":{"t":"ptr","v":"0x0e9cb31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cb248"},"kids_end":{"t":"ptr","v":"0x0e9cb24c"},"kids_cap":{"t":"ptr","v":"0x0e9cb24c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cb248"},"kids_end":{"t":"ptr","v":"0x0e9cb24c"},"kids_cap":{"t":"ptr","v":"0x0e9cb24c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb1f8"},"kids_end":{"t":"ptr","v":"0x0e9cb1fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb1f8"},"kids_end":{"t":"ptr","v":"0x0e9cb1fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb308"},"kids_end":{"t":"ptr","v":"0x0e9cb30c"},"kids_cap":{"t":"ptr","v":"0x0e9cb30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb308"},"kids_end":{"t":"ptr","v":"0x0e9cb30c"},"kids_cap":{"t":"ptr","v":"0x0e9cb30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9cb268"},"kids_end":{"t":"ptr","v":"0x0e9cb270"},"kids_cap":{"t":"ptr","v":"0x0e9cb270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9cb268"},"kids_end":{"t":"ptr","v":"0x0e9cb270"},"kids_cap":{"t":"ptr","v":"0x0e9cb270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fcd18"},"kids_end":{"t":"ptr","v":"0x0e8fcd24"},"kids_cap":{"t":"ptr","v":"0x0e8fcd24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fcd18"},"kids_end":{"t":"ptr","v":"0x0e8fcd24"},"kids_cap":{"t":"ptr","v":"0x0e8fcd24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb208"},"kids_end":{"t":"ptr","v":"0x0e9cb210"},"kids_cap":{"t":"ptr","v":"0x0e9cb210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb208"},"kids_end":{"t":"ptr","v":"0x0e9cb210"},"kids_cap":{"t":"ptr","v":"0x0e9cb210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fcb50"},"kids_end":{"t":"ptr","v":"0x0e8fcb5c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fcb50"},"kids_end":{"t":"ptr","v":"0x0e8fcb5c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fcad8"},"kids_end":{"t":"ptr","v":"0x0e8fcae4"},"kids_cap":{"t":"ptr","v":"0x0e8fcae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fcad8"},"kids_end":{"t":"ptr","v":"0x0e8fcae4"},"kids_cap":{"t":"ptr","v":"0x0e8fcae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e9cb218"},"kids_end":{"t":"ptr","v":"0x0e9cb220"},"kids_cap":{"t":"ptr","v":"0x0e9cb220"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e9cb218"},"kids_end":{"t":"ptr","v":"0x0e9cb220"},"kids_cap":{"t":"ptr","v":"0x0e9cb220"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9cb328"},"kids_end":{"t":"ptr","v":"0x0e9cb32c"},"kids_cap":{"t":"ptr","v":"0x0e9cb32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9cb328"},"kids_end":{"t":"ptr","v":"0x0e9cb32c"},"kids_cap":{"t":"ptr","v":"0x0e9cb32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cb278"},"kids_end":{"t":"ptr","v":"0x0e9cb27c"},"kids_cap":{"t":"ptr","v":"0x0e9cb27c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cb278"},"kids_end":{"t":"ptr","v":"0x0e9cb27c"},"kids_cap":{"t":"ptr","v":"0x0e9cb27c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fcc40"},"kids_end":{"t":"ptr","v":"0x0e8fcc4c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fcc40"},"kids_end":{"t":"ptr","v":"0x0e8fcc4c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9cb298"},"kids_end":{"t":"ptr","v":"0x0e9cb29c"},"kids_cap":{"t":"ptr","v":"0x0e9cb29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9cb298"},"kids_end":{"t":"ptr","v":"0x0e9cb29c"},"kids_cap":{"t":"ptr","v":"0x0e9cb29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb2a8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb2a8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9cb3b8"},"kids_end":{"t":"ptr","v":"0x0e9cb3bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9cb3b8"},"kids_end":{"t":"ptr","v":"0x0e9cb3bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cb358"},"kids_end":{"t":"ptr","v":"0x0e9cb35c"},"kids_cap":{"t":"ptr","v":"0x0e9cb35c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cb358"},"kids_end":{"t":"ptr","v":"0x0e9cb35c"},"kids_cap":{"t":"ptr","v":"0x0e9cb35c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fcb68"},"kids_end":{"t":"ptr","v":"0x0e8fcb74"},"kids_cap":{"t":"ptr","v":"0x0e8fcb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fcb68"},"kids_end":{"t":"ptr","v":"0x0e8fcb74"},"kids_cap":{"t":"ptr","v":"0x0e8fcb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9cb448"},"kids_end":{"t":"ptr","v":"0x0e9cb44c"},"kids_cap":{"t":"ptr","v":"0x0e9cb44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9cb448"},"kids_end":{"t":"ptr","v":"0x0e9cb44c"},"kids_cap":{"t":"ptr","v":"0x0e9cb44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb408"},"kids_end":{"t":"ptr","v":"0x0e9cb40c"},"kids_cap":{"t":"ptr","v":"0x0e9cb40c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb408"},"kids_end":{"t":"ptr","v":"0x0e9cb40c"},"kids_cap":{"t":"ptr","v":"0x0e9cb40c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb3e8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb3e8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb4a8"},"kids_end":{"t":"ptr","v":"0x0e9cb4ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb4a8"},"kids_end":{"t":"ptr","v":"0x0e9cb4ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb4d8"},"kids_end":{"t":"ptr","v":"0x0e9cb4dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb4d8"},"kids_end":{"t":"ptr","v":"0x0e9cb4dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb498"},"kids_end":{"t":"ptr","v":"0x0e9cb49c"},"kids_cap":{"t":"ptr","v":"0x0e9cb49c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb498"},"kids_end":{"t":"ptr","v":"0x0e9cb49c"},"kids_cap":{"t":"ptr","v":"0x0e9cb49c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9cb3f8"},"kids_end":{"t":"ptr","v":"0x0e9cb3fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9cb3f8"},"kids_end":{"t":"ptr","v":"0x0e9cb3fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fcaf0"},"kids_end":{"t":"ptr","v":"0x0e8fcafc"},"kids_cap":{"t":"ptr","v":"0x0e8fcafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fcaf0"},"kids_end":{"t":"ptr","v":"0x0e8fcafc"},"kids_cap":{"t":"ptr","v":"0x0e8fcafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fcb08"},"kids_end":{"t":"ptr","v":"0x0e8fcb14"},"kids_cap":{"t":"ptr","v":"0x0e8fcb14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fcb08"},"kids_end":{"t":"ptr","v":"0x0e8fcb14"},"kids_cap":{"t":"ptr","v":"0x0e8fcb14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb3a8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb3a8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb488"},"kids_end":{"t":"ptr","v":"0x0e9cb490"},"kids_cap":{"t":"ptr","v":"0x0e9cb490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb488"},"kids_end":{"t":"ptr","v":"0x0e9cb490"},"kids_cap":{"t":"ptr","v":"0x0e9cb490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cb4c8"},"kids_end":{"t":"ptr","v":"0x0e9cb4cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cb4c8"},"kids_end":{"t":"ptr","v":"0x0e9cb4cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88ce18"},"kids_end":{"t":"ptr","v":"0x0e88ce2c"},"kids_cap":{"t":"ptr","v":"0x0e88ce2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88ce18"},"kids_end":{"t":"ptr","v":"0x0e88ce2c"},"kids_cap":{"t":"ptr","v":"0x0e88ce2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fcb80"},"kids_end":{"t":"ptr","v":"0x0e8fcb8c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fcb80"},"kids_end":{"t":"ptr","v":"0x0e8fcb8c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969de0"},"kids_end":{"t":"ptr","v":"0x0e969e04"},"kids_cap":{"t":"ptr","v":"0x0e969e04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969de0"},"kids_end":{"t":"ptr","v":"0x0e969e04"},"kids_cap":{"t":"ptr","v":"0x0e969e04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fcc28"},"kids_end":{"t":"ptr","v":"0x0e8fcc34"},"kids_cap":{"t":"ptr","v":"0x0e8fcc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fcc28"},"kids_end":{"t":"ptr","v":"0x0e8fcc34"},"kids_cap":{"t":"ptr","v":"0x0e8fcc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[86]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921a90"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e9cb348"},"kids_end":{"t":"ptr","v":"0x0e9cb34c"},"kids_cap":{"t":"ptr","v":"0x0e9cb34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921a90"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e9cb348"},"kids_end":{"t":"ptr","v":"0x0e9cb34c"},"kids_cap":{"t":"ptr","v":"0x0e9cb34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[87]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04922318"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e9cb388"},"kids_end":{"t":"ptr","v":"0x0e9cb390"},"kids_cap":{"t":"ptr","v":"0x0e9cb390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04922318"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e9cb388"},"kids_end":{"t":"ptr","v":"0x0e9cb390"},"kids_cap":{"t":"ptr","v":"0x0e9cb390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[88]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920ab8"},"tech_id":{"t":"i32","v":88},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920ab8"},"tech_id":{"t":"i32","v":88},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb4b8"},"kids_end":{"t":"ptr","v":"0x0e9cb4bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb4b8"},"kids_end":{"t":"ptr","v":"0x0e9cb4bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9cb458"},"kids_end":{"t":"ptr","v":"0x0e9cb45c"},"kids_cap":{"t":"ptr","v":"0x0e9cb45c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9cb458"},"kids_end":{"t":"ptr","v":"0x0e9cb45c"},"kids_cap":{"t":"ptr","v":"0x0e9cb45c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb468"},"kids_end":{"t":"ptr","v":"0x0e9cb46c"},"kids_cap":{"t":"ptr","v":"0x0e9cb46c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb468"},"kids_end":{"t":"ptr","v":"0x0e9cb46c"},"kids_cap":{"t":"ptr","v":"0x0e9cb46c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb478"},"kids_end":{"t":"ptr","v":"0x0e9cb47c"},"kids_cap":{"t":"ptr","v":"0x0e9cb47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb478"},"kids_end":{"t":"ptr","v":"0x0e9cb47c"},"kids_cap":{"t":"ptr","v":"0x0e9cb47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb3d8"},"kids_end":{"t":"ptr","v":"0x0e9cb3dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb3d8"},"kids_end":{"t":"ptr","v":"0x0e9cb3dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb438"},"kids_end":{"t":"ptr","v":"0x0e9cb440"},"kids_cap":{"t":"ptr","v":"0x0e9cb440"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb438"},"kids_end":{"t":"ptr","v":"0x0e9cb440"},"kids_cap":{"t":"ptr","v":"0x0e9cb440"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb368"},"kids_end":{"t":"ptr","v":"0x0e9cb370"},"kids_cap":{"t":"ptr","v":"0x0e9cb370"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb368"},"kids_end":{"t":"ptr","v":"0x0e9cb370"},"kids_cap":{"t":"ptr","v":"0x0e9cb370"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d378"},"kids_end":{"t":"ptr","v":"0x0e88d38c"},"kids_cap":{"t":"ptr","v":"0x0e88d38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d378"},"kids_end":{"t":"ptr","v":"0x0e88d38c"},"kids_cap":{"t":"ptr","v":"0x0e88d38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fcb20"},"kids_end":{"t":"ptr","v":"0x0e8fcb2c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fcb20"},"kids_end":{"t":"ptr","v":"0x0e8fcb2c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb378"},"kids_end":{"t":"ptr","v":"0x0e9cb37c"},"kids_cap":{"t":"ptr","v":"0x0e9cb37c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb378"},"kids_end":{"t":"ptr","v":"0x0e9cb37c"},"kids_cap":{"t":"ptr","v":"0x0e9cb37c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb398"},"kids_end":{"t":"ptr","v":"0x0e9cb39c"},"kids_cap":{"t":"ptr","v":"0x0e9cb39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb398"},"kids_end":{"t":"ptr","v":"0x0e9cb39c"},"kids_cap":{"t":"ptr","v":"0x0e9cb39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9cb3c8"},"kids_end":{"t":"ptr","v":"0x0e9cb3cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9cb3c8"},"kids_end":{"t":"ptr","v":"0x0e9cb3cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9cb418"},"kids_end":{"t":"ptr","v":"0x0e9cb41c"},"kids_cap":{"t":"ptr","v":"0x0e9cb41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9cb418"},"kids_end":{"t":"ptr","v":"0x0e9cb41c"},"kids_cap":{"t":"ptr","v":"0x0e9cb41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e9cb428"},"kids_end":{"t":"ptr","v":"0x0e9cb430"},"kids_cap":{"t":"ptr","v":"0x0e9cb430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e9cb428"},"kids_end":{"t":"ptr","v":"0x0e9cb430"},"kids_cap":{"t":"ptr","v":"0x0e9cb430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fccd0"},"kids_end":{"t":"ptr","v":"0x0e8fccdc"},"kids_cap":{"t":"ptr","v":"0x0e8fccdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fccd0"},"kids_end":{"t":"ptr","v":"0x0e8fccdc"},"kids_cap":{"t":"ptr","v":"0x0e8fccdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e9c95d8"},"kids_end":{"t":"ptr","v":"0x0e9c95e0"},"kids_cap":{"t":"ptr","v":"0x0e9c95e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e9c95d8"},"kids_end":{"t":"ptr","v":"0x0e9c95e0"},"kids_cap":{"t":"ptr","v":"0x0e9c95e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9c9638"},"kids_end":{"t":"ptr","v":"0x0e9c9640"},"kids_cap":{"t":"ptr","v":"0x0e9c9640"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9c9638"},"kids_end":{"t":"ptr","v":"0x0e9c9640"},"kids_cap":{"t":"ptr","v":"0x0e9c9640"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e9c9718"},"kids_end":{"t":"ptr","v":"0x0e9c971c"},"kids_cap":{"t":"ptr","v":"0x0e9c971c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e9c9718"},"kids_end":{"t":"ptr","v":"0x0e9c971c"},"kids_cap":{"t":"ptr","v":"0x0e9c971c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fcbf8"},"kids_end":{"t":"ptr","v":"0x0e8fcc04"},"kids_cap":{"t":"ptr","v":"0x0e8fcc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fcbf8"},"kids_end":{"t":"ptr","v":"0x0e8fcc04"},"kids_cap":{"t":"ptr","v":"0x0e8fcc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fcb38"},"kids_end":{"t":"ptr","v":"0x0e8fcb44"},"kids_cap":{"t":"ptr","v":"0x0e8fcb44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fcb38"},"kids_end":{"t":"ptr","v":"0x0e8fcb44"},"kids_cap":{"t":"ptr","v":"0x0e8fcb44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fcb98"},"kids_end":{"t":"ptr","v":"0x0e8fcba8"},"kids_cap":{"t":"ptr","v":"0x0e8fcba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fcb98"},"kids_end":{"t":"ptr","v":"0x0e8fcba8"},"kids_cap":{"t":"ptr","v":"0x0e8fcba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9c96a8"},"kids_end":{"t":"ptr","v":"0x0e9c96b0"},"kids_cap":{"t":"ptr","v":"0x0e9c96b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9c96a8"},"kids_end":{"t":"ptr","v":"0x0e9c96b0"},"kids_cap":{"t":"ptr","v":"0x0e9c96b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9c9588"},"kids_end":{"t":"ptr","v":"0x0e9c958c"},"kids_cap":{"t":"ptr","v":"0x0e9c958c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9c9588"},"kids_end":{"t":"ptr","v":"0x0e9c958c"},"kids_cap":{"t":"ptr","v":"0x0e9c958c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fcbe0"},"kids_end":{"t":"ptr","v":"0x0e8fcbec"},"kids_cap":{"t":"ptr","v":"0x0e8fcbec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fcbe0"},"kids_end":{"t":"ptr","v":"0x0e8fcbec"},"kids_cap":{"t":"ptr","v":"0x0e8fcbec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9c96f8"},"kids_end":{"t":"ptr","v":"0x0e9c96fc"},"kids_cap":{"t":"ptr","v":"0x0e9c96fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9c96f8"},"kids_end":{"t":"ptr","v":"0x0e9c96fc"},"kids_cap":{"t":"ptr","v":"0x0e9c96fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9c9598"},"kids_end":{"t":"ptr","v":"0x0e9c959c"},"kids_cap":{"t":"ptr","v":"0x0e9c959c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9c9598"},"kids_end":{"t":"ptr","v":"0x0e9c959c"},"kids_cap":{"t":"ptr","v":"0x0e9c959c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e9c95e8"},"kids_end":{"t":"ptr","v":"0x0e9c95ec"},"kids_cap":{"t":"ptr","v":"0x0e9c95ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e9c95e8"},"kids_end":{"t":"ptr","v":"0x0e9c95ec"},"kids_cap":{"t":"ptr","v":"0x0e9c95ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e9c96d8"},"kids_end":{"t":"ptr","v":"0x0e9c96e0"},"kids_cap":{"t":"ptr","v":"0x0e9c96e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e9c96d8"},"kids_end":{"t":"ptr","v":"0x0e9c96e0"},"kids_cap":{"t":"ptr","v":"0x0e9c96e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9c9618"},"kids_end":{"t":"ptr","v":"0x0e9c961c"},"kids_cap":{"t":"ptr","v":"0x0e9c961c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9c9618"},"kids_end":{"t":"ptr","v":"0x0e9c961c"},"kids_cap":{"t":"ptr","v":"0x0e9c961c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9c9548"},"kids_end":{"t":"ptr","v":"0x0e9c9550"},"kids_cap":{"t":"ptr","v":"0x0e9c9550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9c9548"},"kids_end":{"t":"ptr","v":"0x0e9c9550"},"kids_cap":{"t":"ptr","v":"0x0e9c9550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fcd00"},"kids_end":{"t":"ptr","v":"0x0e8fcd0c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fcd00"},"kids_end":{"t":"ptr","v":"0x0e8fcd0c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e9c95a8"},"kids_end":{"t":"ptr","v":"0x0e9c95ac"},"kids_cap":{"t":"ptr","v":"0x0e9c95ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e9c95a8"},"kids_end":{"t":"ptr","v":"0x0e9c95ac"},"kids_cap":{"t":"ptr","v":"0x0e9c95ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9c9708"},"kids_end":{"t":"ptr","v":"0x0e9c9710"},"kids_cap":{"t":"ptr","v":"0x0e9c9710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9c9708"},"kids_end":{"t":"ptr","v":"0x0e9c9710"},"kids_cap":{"t":"ptr","v":"0x0e9c9710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e9c9558"},"kids_end":{"t":"ptr","v":"0x0e9c955c"},"kids_cap":{"t":"ptr","v":"0x0e9c955c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e9c9558"},"kids_end":{"t":"ptr","v":"0x0e9c955c"},"kids_cap":{"t":"ptr","v":"0x0e9c955c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e9c9698"},"kids_end":{"t":"ptr","v":"0x0e9c96a0"},"kids_cap":{"t":"ptr","v":"0x0e9c96a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e9c9698"},"kids_end":{"t":"ptr","v":"0x0e9c96a0"},"kids_cap":{"t":"ptr","v":"0x0e9c96a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9c9648"},"kids_end":{"t":"ptr","v":"0x0e9c9650"},"kids_cap":{"t":"ptr","v":"0x0e9c9650"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9c9648"},"kids_end":{"t":"ptr","v":"0x0e9c9650"},"kids_cap":{"t":"ptr","v":"0x0e9c9650"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e9c9738"},"kids_end":{"t":"ptr","v":"0x0e9c9740"},"kids_cap":{"t":"ptr","v":"0x0e9c9740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e9c9738"},"kids_end":{"t":"ptr","v":"0x0e9c9740"},"kids_cap":{"t":"ptr","v":"0x0e9c9740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e9c9728"},"kids_end":{"t":"ptr","v":"0x0e9c9730"},"kids_cap":{"t":"ptr","v":"0x0e9c9730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e9c9728"},"kids_end":{"t":"ptr","v":"0x0e9c9730"},"kids_cap":{"t":"ptr","v":"0x0e9c9730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e9c96b8"},"kids_end":{"t":"ptr","v":"0x0e9c96bc"},"kids_cap":{"t":"ptr","v":"0x0e9c96bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e9c96b8"},"kids_end":{"t":"ptr","v":"0x0e9c96bc"},"kids_cap":{"t":"ptr","v":"0x0e9c96bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9c9568"},"kids_end":{"t":"ptr","v":"0x0e9c956c"},"kids_cap":{"t":"ptr","v":"0x0e9c956c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9c9568"},"kids_end":{"t":"ptr","v":"0x0e9c956c"},"kids_cap":{"t":"ptr","v":"0x0e9c956c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9c9578"},"kids_end":{"t":"ptr","v":"0x0e9c9580"},"kids_cap":{"t":"ptr","v":"0x0e9c9580"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9c9578"},"kids_end":{"t":"ptr","v":"0x0e9c9580"},"kids_cap":{"t":"ptr","v":"0x0e9c9580"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9c95c8"},"kids_end":{"t":"ptr","v":"0x0e9c95d0"},"kids_cap":{"t":"ptr","v":"0x0e9c95d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9c95c8"},"kids_end":{"t":"ptr","v":"0x0e9c95d0"},"kids_cap":{"t":"ptr","v":"0x0e9c95d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9c95b8"},"kids_end":{"t":"ptr","v":"0x0e9c95bc"},"kids_cap":{"t":"ptr","v":"0x0e9c95bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9c95b8"},"kids_end":{"t":"ptr","v":"0x0e9c95bc"},"kids_cap":{"t":"ptr","v":"0x0e9c95bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e9c95f8"},"kids_end":{"t":"ptr","v":"0x0e9c95fc"},"kids_cap":{"t":"ptr","v":"0x0e9c95fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e9c95f8"},"kids_end":{"t":"ptr","v":"0x0e9c95fc"},"kids_cap":{"t":"ptr","v":"0x0e9c95fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9c9608"},"kids_end":{"t":"ptr","v":"0x0e9c9610"},"kids_cap":{"t":"ptr","v":"0x0e9c9610"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9c9608"},"kids_end":{"t":"ptr","v":"0x0e9c9610"},"kids_cap":{"t":"ptr","v":"0x0e9c9610"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9c9628"},"kids_end":{"t":"ptr","v":"0x0e9c962c"},"kids_cap":{"t":"ptr","v":"0x0e9c962c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9c9628"},"kids_end":{"t":"ptr","v":"0x0e9c962c"},"kids_cap":{"t":"ptr","v":"0x0e9c962c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e9c9658"},"kids_end":{"t":"ptr","v":"0x0e9c965c"},"kids_cap":{"t":"ptr","v":"0x0e9c965c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e9c9658"},"kids_end":{"t":"ptr","v":"0x0e9c965c"},"kids_cap":{"t":"ptr","v":"0x0e9c965c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9c9668"},"kids_end":{"t":"ptr","v":"0x0e9c9670"},"kids_cap":{"t":"ptr","v":"0x0e9c9670"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9c9668"},"kids_end":{"t":"ptr","v":"0x0e9c9670"},"kids_cap":{"t":"ptr","v":"0x0e9c9670"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9c9678"},"kids_end":{"t":"ptr","v":"0x0e9c967c"},"kids_cap":{"t":"ptr","v":"0x0e9c967c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9c9678"},"kids_end":{"t":"ptr","v":"0x0e9c967c"},"kids_cap":{"t":"ptr","v":"0x0e9c967c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e9c96c8"},"kids_end":{"t":"ptr","v":"0x0e9c96cc"},"kids_cap":{"t":"ptr","v":"0x0e9c96cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e9c96c8"},"kids_end":{"t":"ptr","v":"0x0e9c96cc"},"kids_cap":{"t":"ptr","v":"0x0e9c96cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fcbb0"},"kids_end":{"t":"ptr","v":"0x0e8fcbbc"},"kids_cap":{"t":"ptr","v":"0x0e8fcbbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fcbb0"},"kids_end":{"t":"ptr","v":"0x0e8fcbbc"},"kids_cap":{"t":"ptr","v":"0x0e8fcbbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fcd78"},"kids_end":{"t":"ptr","v":"0x0e8fcd88"},"kids_cap":{"t":"ptr","v":"0x0e8fcd88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fcd78"},"kids_end":{"t":"ptr","v":"0x0e8fcd88"},"kids_cap":{"t":"ptr","v":"0x0e8fcd88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9c96e8"},"kids_end":{"t":"ptr","v":"0x0e9c96f0"},"kids_cap":{"t":"ptr","v":"0x0e9c96f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9c96e8"},"kids_end":{"t":"ptr","v":"0x0e9c96f0"},"kids_cap":{"t":"ptr","v":"0x0e9c96f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e9c9688"},"kids_end":{"t":"ptr","v":"0x0e9c9690"},"kids_cap":{"t":"ptr","v":"0x0e9c9690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e9c9688"},"kids_end":{"t":"ptr","v":"0x0e9c9690"},"kids_cap":{"t":"ptr","v":"0x0e9c9690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9c98e8"},"kids_end":{"t":"ptr","v":"0x0e9c98ec"},"kids_cap":{"t":"ptr","v":"0x0e9c98ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9c98e8"},"kids_end":{"t":"ptr","v":"0x0e9c98ec"},"kids_cap":{"t":"ptr","v":"0x0e9c98ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9c97a8"},"kids_end":{"t":"ptr","v":"0x0e9c97b0"},"kids_cap":{"t":"ptr","v":"0x0e9c97b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9c97a8"},"kids_end":{"t":"ptr","v":"0x0e9c97b0"},"kids_cap":{"t":"ptr","v":"0x0e9c97b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e9c98b8"},"kids_end":{"t":"ptr","v":"0x0e9c98c0"},"kids_cap":{"t":"ptr","v":"0x0e9c98c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e9c98b8"},"kids_end":{"t":"ptr","v":"0x0e9c98c0"},"kids_cap":{"t":"ptr","v":"0x0e9c98c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9c98a8"},"kids_end":{"t":"ptr","v":"0x0e9c98b0"},"kids_cap":{"t":"ptr","v":"0x0e9c98b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9c98a8"},"kids_end":{"t":"ptr","v":"0x0e9c98b0"},"kids_cap":{"t":"ptr","v":"0x0e9c98b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e9c98d8"},"kids_end":{"t":"ptr","v":"0x0e9c98dc"},"kids_cap":{"t":"ptr","v":"0x0e9c98dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e9c98d8"},"kids_end":{"t":"ptr","v":"0x0e9c98dc"},"kids_cap":{"t":"ptr","v":"0x0e9c98dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e9c9748"},"kids_end":{"t":"ptr","v":"0x0e9c974c"},"kids_cap":{"t":"ptr","v":"0x0e9c974c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e9c9748"},"kids_end":{"t":"ptr","v":"0x0e9c974c"},"kids_cap":{"t":"ptr","v":"0x0e9c974c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9c9788"},"kids_end":{"t":"ptr","v":"0x0e9c9790"},"kids_cap":{"t":"ptr","v":"0x0e9c9790"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9c9788"},"kids_end":{"t":"ptr","v":"0x0e9c9790"},"kids_cap":{"t":"ptr","v":"0x0e9c9790"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e9c9758"},"kids_end":{"t":"ptr","v":"0x0e9c975c"},"kids_cap":{"t":"ptr","v":"0x0e9c975c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e9c9758"},"kids_end":{"t":"ptr","v":"0x0e9c975c"},"kids_cap":{"t":"ptr","v":"0x0e9c975c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fcd60"},"kids_end":{"t":"ptr","v":"0x0e8fcd6c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fcd60"},"kids_end":{"t":"ptr","v":"0x0e8fcd6c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9c98c8"},"kids_end":{"t":"ptr","v":"0x0e9c98cc"},"kids_cap":{"t":"ptr","v":"0x0e9c98cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9c98c8"},"kids_end":{"t":"ptr","v":"0x0e9c98cc"},"kids_cap":{"t":"ptr","v":"0x0e9c98cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d098"},"kids_end":{"t":"ptr","v":"0x0e88d0ac"},"kids_cap":{"t":"ptr","v":"0x0e88d0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d098"},"kids_end":{"t":"ptr","v":"0x0e88d0ac"},"kids_cap":{"t":"ptr","v":"0x0e88d0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e9c98f8"},"kids_end":{"t":"ptr","v":"0x0e9c98fc"},"kids_cap":{"t":"ptr","v":"0x0e9c98fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e9c98f8"},"kids_end":{"t":"ptr","v":"0x0e9c98fc"},"kids_cap":{"t":"ptr","v":"0x0e9c98fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e9c9878"},"kids_end":{"t":"ptr","v":"0x0e9c987c"},"kids_cap":{"t":"ptr","v":"0x0e9c987c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e9c9878"},"kids_end":{"t":"ptr","v":"0x0e9c987c"},"kids_cap":{"t":"ptr","v":"0x0e9c987c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e9c9838"},"kids_end":{"t":"ptr","v":"0x0e9c983c"},"kids_cap":{"t":"ptr","v":"0x0e9c983c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e9c9838"},"kids_end":{"t":"ptr","v":"0x0e9c983c"},"kids_cap":{"t":"ptr","v":"0x0e9c983c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9c9908"},"kids_end":{"t":"ptr","v":"0x0e9c990c"},"kids_cap":{"t":"ptr","v":"0x0e9c990c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9c9908"},"kids_end":{"t":"ptr","v":"0x0e9c990c"},"kids_cap":{"t":"ptr","v":"0x0e9c990c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9c9818"},"kids_end":{"t":"ptr","v":"0x0e9c981c"},"kids_cap":{"t":"ptr","v":"0x0e9c981c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9c9818"},"kids_end":{"t":"ptr","v":"0x0e9c981c"},"kids_cap":{"t":"ptr","v":"0x0e9c981c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fcd30"},"kids_end":{"t":"ptr","v":"0x0e8fcd40"},"kids_cap":{"t":"ptr","v":"0x0e8fcd40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fcd30"},"kids_end":{"t":"ptr","v":"0x0e8fcd40"},"kids_cap":{"t":"ptr","v":"0x0e8fcd40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fcbc8"},"kids_end":{"t":"ptr","v":"0x0e8fcbd4"},"kids_cap":{"t":"ptr","v":"0x0e8fcbd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fcbc8"},"kids_end":{"t":"ptr","v":"0x0e8fcbd4"},"kids_cap":{"t":"ptr","v":"0x0e8fcbd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[217]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e840"},"tech_id":{"t":"i32","v":217},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e840"},"tech_id":{"t":"i32","v":217},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9c9928"},"kids_end":{"t":"ptr","v":"0x0e9c992c"},"kids_cap":{"t":"ptr","v":"0x0e9c992c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9c9928"},"kids_end":{"t":"ptr","v":"0x0e9c992c"},"kids_cap":{"t":"ptr","v":"0x0e9c992c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9c97c8"},"kids_end":{"t":"ptr","v":"0x0e9c97cc"},"kids_cap":{"t":"ptr","v":"0x0e9c97cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9c97c8"},"kids_end":{"t":"ptr","v":"0x0e9c97cc"},"kids_cap":{"t":"ptr","v":"0x0e9c97cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fcc58"},"kids_end":{"t":"ptr","v":"0x0e8fcc68"},"kids_cap":{"t":"ptr","v":"0x0e8fcc68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fcc58"},"kids_end":{"t":"ptr","v":"0x0e8fcc68"},"kids_cap":{"t":"ptr","v":"0x0e8fcc68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9c9798"},"kids_end":{"t":"ptr","v":"0x0e9c97a0"},"kids_cap":{"t":"ptr","v":"0x0e9c97a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9c9798"},"kids_end":{"t":"ptr","v":"0x0e9c97a0"},"kids_cap":{"t":"ptr","v":"0x0e9c97a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9c9938"},"kids_end":{"t":"ptr","v":"0x0e9c993c"},"kids_cap":{"t":"ptr","v":"0x0e9c993c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9c9938"},"kids_end":{"t":"ptr","v":"0x0e9c993c"},"kids_cap":{"t":"ptr","v":"0x0e9c993c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e9c9778"},"kids_end":{"t":"ptr","v":"0x0e9c977c"},"kids_cap":{"t":"ptr","v":"0x0e9c977c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e9c9778"},"kids_end":{"t":"ptr","v":"0x0e9c977c"},"kids_cap":{"t":"ptr","v":"0x0e9c977c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fcd48"},"kids_end":{"t":"ptr","v":"0x0e8fcd54"},"kids_cap":{"t":"ptr","v":"0x0e8fcd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fcd48"},"kids_end":{"t":"ptr","v":"0x0e8fcd54"},"kids_cap":{"t":"ptr","v":"0x0e8fcd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9c9768"},"kids_end":{"t":"ptr","v":"0x0e9c9770"},"kids_cap":{"t":"ptr","v":"0x0e9c9770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9c9768"},"kids_end":{"t":"ptr","v":"0x0e9c9770"},"kids_cap":{"t":"ptr","v":"0x0e9c9770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d398"},"kids_end":{"t":"ptr","v":"0x0e88d3ac"},"kids_cap":{"t":"ptr","v":"0x0e88d3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d398"},"kids_end":{"t":"ptr","v":"0x0e88d3ac"},"kids_cap":{"t":"ptr","v":"0x0e88d3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e9c9888"},"kids_end":{"t":"ptr","v":"0x0e9c988c"},"kids_cap":{"t":"ptr","v":"0x0e9c988c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e9c9888"},"kids_end":{"t":"ptr","v":"0x0e9c988c"},"kids_cap":{"t":"ptr","v":"0x0e9c988c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e9c97b8"},"kids_end":{"t":"ptr","v":"0x0e9c97bc"},"kids_cap":{"t":"ptr","v":"0x0e9c97bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e9c97b8"},"kids_end":{"t":"ptr","v":"0x0e9c97bc"},"kids_cap":{"t":"ptr","v":"0x0e9c97bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9c9898"},"kids_end":{"t":"ptr","v":"0x0e9c989c"},"kids_cap":{"t":"ptr","v":"0x0e9c989c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9c9898"},"kids_end":{"t":"ptr","v":"0x0e9c989c"},"kids_cap":{"t":"ptr","v":"0x0e9c989c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e9c97d8"},"kids_end":{"t":"ptr","v":"0x0e9c97dc"},"kids_cap":{"t":"ptr","v":"0x0e9c97dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e9c97d8"},"kids_end":{"t":"ptr","v":"0x0e9c97dc"},"kids_cap":{"t":"ptr","v":"0x0e9c97dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9c97e8"},"kids_end":{"t":"ptr","v":"0x0e9c97ec"},"kids_cap":{"t":"ptr","v":"0x0e9c97ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9c97e8"},"kids_end":{"t":"ptr","v":"0x0e9c97ec"},"kids_cap":{"t":"ptr","v":"0x0e9c97ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9c97f8"},"kids_end":{"t":"ptr","v":"0x0e9c9800"},"kids_cap":{"t":"ptr","v":"0x0e9c9800"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9c97f8"},"kids_end":{"t":"ptr","v":"0x0e9c9800"},"kids_cap":{"t":"ptr","v":"0x0e9c9800"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d078"},"kids_end":{"t":"ptr","v":"0x0e88d08c"},"kids_cap":{"t":"ptr","v":"0x0e88d08c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d078"},"kids_end":{"t":"ptr","v":"0x0e88d08c"},"kids_cap":{"t":"ptr","v":"0x0e88d08c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e9c9918"},"kids_end":{"t":"ptr","v":"0x0e9c991c"},"kids_cap":{"t":"ptr","v":"0x0e9c991c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e9c9918"},"kids_end":{"t":"ptr","v":"0x0e9c991c"},"kids_cap":{"t":"ptr","v":"0x0e9c991c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9c9848"},"kids_end":{"t":"ptr","v":"0x0e9c984c"},"kids_cap":{"t":"ptr","v":"0x0e9c984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9c9848"},"kids_end":{"t":"ptr","v":"0x0e9c984c"},"kids_cap":{"t":"ptr","v":"0x0e9c984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e9c9868"},"kids_end":{"t":"ptr","v":"0x0e9c986c"},"kids_cap":{"t":"ptr","v":"0x0e9c986c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e9c9868"},"kids_end":{"t":"ptr","v":"0x0e9c986c"},"kids_cap":{"t":"ptr","v":"0x0e9c986c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9c9808"},"kids_end":{"t":"ptr","v":"0x0e9c9810"},"kids_cap":{"t":"ptr","v":"0x0e9c9810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9c9808"},"kids_end":{"t":"ptr","v":"0x0e9c9810"},"kids_cap":{"t":"ptr","v":"0x0e9c9810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9c9858"},"kids_end":{"t":"ptr","v":"0x0e9c9860"},"kids_cap":{"t":"ptr","v":"0x0e9c9860"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9c9858"},"kids_end":{"t":"ptr","v":"0x0e9c9860"},"kids_cap":{"t":"ptr","v":"0x0e9c9860"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e9c9828"},"kids_end":{"t":"ptr","v":"0x0e9c9830"},"kids_cap":{"t":"ptr","v":"0x0e9c9830"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e9c9828"},"kids_end":{"t":"ptr","v":"0x0e9c9830"},"kids_cap":{"t":"ptr","v":"0x0e9c9830"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9c9e78"},"kids_end":{"t":"ptr","v":"0x0e9c9e7c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9c9e78"},"kids_end":{"t":"ptr","v":"0x0e9c9e7c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[253]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697168"},"tech_id":{"t":"i32","v":253},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697168"},"tech_id":{"t":"i32","v":253},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9c9e88"},"kids_end":{"t":"ptr","v":"0x0e9c9e8c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9c9e88"},"kids_end":{"t":"ptr","v":"0x0e9c9e8c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fcc10"},"kids_end":{"t":"ptr","v":"0x0e8fcc1c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fcc10"},"kids_end":{"t":"ptr","v":"0x0e8fcc1c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fca90"},"kids_end":{"t":"ptr","v":"0x0e8fca9c"},"kids_cap":{"t":"ptr","v":"0x0e8fca9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fca90"},"kids_end":{"t":"ptr","v":"0x0e8fca9c"},"kids_cap":{"t":"ptr","v":"0x0e8fca9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fcc70"},"kids_end":{"t":"ptr","v":"0x0e8fcc7c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fcc70"},"kids_end":{"t":"ptr","v":"0x0e8fcc7c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fcaa8"},"kids_end":{"t":"ptr","v":"0x0e8fcab4"},"kids_cap":{"t":"ptr","v":"0x0e8fcab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fcaa8"},"kids_end":{"t":"ptr","v":"0x0e8fcab4"},"kids_cap":{"t":"ptr","v":"0x0e8fcab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fcc88"},"kids_end":{"t":"ptr","v":"0x0e8fcc94"},"kids_cap":{"t":"ptr","v":"0x0e8fcc94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fcc88"},"kids_end":{"t":"ptr","v":"0x0e8fcc94"},"kids_cap":{"t":"ptr","v":"0x0e8fcc94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[269]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699c10"},"tech_id":{"t":"i32","v":269},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699c10"},"tech_id":{"t":"i32","v":269},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d178"},"kids_end":{"t":"ptr","v":"0x0e88d190"},"kids_cap":{"t":"ptr","v":"0x0e88d190"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d178"},"kids_end":{"t":"ptr","v":"0x0e88d190"},"kids_cap":{"t":"ptr","v":"0x0e88d190"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":80000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":80000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9ca0c8"},"kids_end":{"t":"ptr","v":"0x0e9ca0d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca0d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9ca0c8"},"kids_end":{"t":"ptr","v":"0x0e9ca0d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca0d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9ca088"},"kids_end":{"t":"ptr","v":"0x0e9ca090"},"kids_cap":{"t":"ptr","v":"0x0e9ca090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9ca088"},"kids_end":{"t":"ptr","v":"0x0e9ca090"},"kids_cap":{"t":"ptr","v":"0x0e9ca090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9c9f78"},"kids_end":{"t":"ptr","v":"0x0e9c9f80"},"kids_cap":{"t":"ptr","v":"0x0e9c9f80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9c9f78"},"kids_end":{"t":"ptr","v":"0x0e9c9f80"},"kids_cap":{"t":"ptr","v":"0x0e9c9f80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e9c9f98"},"kids_end":{"t":"ptr","v":"0x0e9c9fa0"},"kids_cap":{"t":"ptr","v":"0x0e9c9fa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e9c9f98"},"kids_end":{"t":"ptr","v":"0x0e9c9fa0"},"kids_cap":{"t":"ptr","v":"0x0e9c9fa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9c9fa8"},"kids_end":{"t":"ptr","v":"0x0e9c9fac"},"kids_cap":{"t":"ptr","v":"0x0e9c9fac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9c9fa8"},"kids_end":{"t":"ptr","v":"0x0e9c9fac"},"kids_cap":{"t":"ptr","v":"0x0e9c9fac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9ca098"},"kids_end":{"t":"ptr","v":"0x0e9ca09c"},"kids_cap":{"t":"ptr","v":"0x0e9ca09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9ca098"},"kids_end":{"t":"ptr","v":"0x0e9ca09c"},"kids_cap":{"t":"ptr","v":"0x0e9ca09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca0e8"},"kids_end":{"t":"ptr","v":"0x0e9ca0ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca0e8"},"kids_end":{"t":"ptr","v":"0x0e9ca0ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9c9fe8"},"kids_end":{"t":"ptr","v":"0x0e9c9fec"},"kids_cap":{"t":"ptr","v":"0x0e9c9fec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9c9fe8"},"kids_end":{"t":"ptr","v":"0x0e9c9fec"},"kids_cap":{"t":"ptr","v":"0x0e9c9fec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca128"},"kids_end":{"t":"ptr","v":"0x0e9ca12c"},"kids_cap":{"t":"ptr","v":"0x0e9ca12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca128"},"kids_end":{"t":"ptr","v":"0x0e9ca12c"},"kids_cap":{"t":"ptr","v":"0x0e9ca12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca008"},"kids_end":{"t":"ptr","v":"0x0e9ca00c"},"kids_cap":{"t":"ptr","v":"0x0e9ca00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca008"},"kids_end":{"t":"ptr","v":"0x0e9ca00c"},"kids_cap":{"t":"ptr","v":"0x0e9ca00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca0f8"},"kids_end":{"t":"ptr","v":"0x0e9ca0fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca0f8"},"kids_end":{"t":"ptr","v":"0x0e9ca0fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9ca0d8"},"kids_end":{"t":"ptr","v":"0x0e9ca0dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9ca0d8"},"kids_end":{"t":"ptr","v":"0x0e9ca0dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9ca058"},"kids_end":{"t":"ptr","v":"0x0e9ca05c"},"kids_cap":{"t":"ptr","v":"0x0e9ca05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9ca058"},"kids_end":{"t":"ptr","v":"0x0e9ca05c"},"kids_cap":{"t":"ptr","v":"0x0e9ca05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9c9fc8"},"kids_end":{"t":"ptr","v":"0x0e9c9fcc"},"kids_cap":{"t":"ptr","v":"0x0e9c9fcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9c9fc8"},"kids_end":{"t":"ptr","v":"0x0e9c9fcc"},"kids_cap":{"t":"ptr","v":"0x0e9c9fcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9ca018"},"kids_end":{"t":"ptr","v":"0x0e9ca01c"},"kids_cap":{"t":"ptr","v":"0x0e9ca01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9ca018"},"kids_end":{"t":"ptr","v":"0x0e9ca01c"},"kids_cap":{"t":"ptr","v":"0x0e9ca01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"before":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}},"ours":{"ret":null,"side":{"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":431},"next_index":{"t":"i64","v":193}}}},"overbudget":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9cb2e8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cb1a8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cb158"},"kids_end":{"t":"ptr","v":"0x0e9cb15c"},"kids_cap":{"t":"ptr","v":"0x0e9cb15c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9cb168"},"kids_end":{"t":"ptr","v":"0x0e9cb170"},"kids_cap":{"t":"ptr","v":"0x0e9cb170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9cb178"},"kids_end":{"t":"ptr","v":"0x0e9cb180"},"kids_cap":{"t":"ptr","v":"0x0e9cb180"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cb188"},"kids_end":{"t":"ptr","v":"0x0e9cb18c"},"kids_cap":{"t":"ptr","v":"0x0e9cb18c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9cb1b8"},"kids_end":{"t":"ptr","v":"0x0e9cb1bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9cb288"},"kids_end":{"t":"ptr","v":"0x0e9cb28c"},"kids_cap":{"t":"ptr","v":"0x0e9cb28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe8f0"},"kids_end":{"t":"ptr","v":"0x0e8fe8fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cb2d8"},"kids_end":{"t":"ptr","v":"0x0e9cb2e0"},"kids_cap":{"t":"ptr","v":"0x0e9cb2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe950"},"kids_end":{"t":"ptr","v":"0x0e8fe960"},"kids_cap":{"t":"ptr","v":"0x0e8fe960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cb1c8"},"kids_end":{"t":"ptr","v":"0x0e9cb1cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cb1d8"},"kids_end":{"t":"ptr","v":"0x0e9cb1dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fe908"},"kids_end":{"t":"ptr","v":"0x0e8fe914"},"kids_cap":{"t":"ptr","v":"0x0e8fe914"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9cb238"},"kids_end":{"t":"ptr","v":"0x0e9cb23c"},"kids_cap":{"t":"ptr","v":"0x0e9cb23c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cb1e8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9cb2f8"},"kids_end":{"t":"ptr","v":"0x0e9cb2fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb2fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe968"},"kids_end":{"t":"ptr","v":"0x0e8fe974"},"kids_cap":{"t":"ptr","v":"0x0e8fe974"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fcce8"},"kids_end":{"t":"ptr","v":"0x0e8fccf8"},"kids_cap":{"t":"ptr","v":"0x0e8fccf8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cb318"},"kids_end":{"t":"ptr","v":"0x0e9cb31c"},"kids_cap":{"t":"ptr","v":"0x0e9cb31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cb248"},"kids_end":{"t":"ptr","v":"0x0e9cb24c"},"kids_cap":{"t":"ptr","v":"0x0e9cb24c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb1f8"},"kids_end":{"t":"ptr","v":"0x0e9cb1fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb308"},"kids_end":{"t":"ptr","v":"0x0e9cb30c"},"kids_cap":{"t":"ptr","v":"0x0e9cb30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9cb268"},"kids_end":{"t":"ptr","v":"0x0e9cb270"},"kids_cap":{"t":"ptr","v":"0x0e9cb270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fcd18"},"kids_end":{"t":"ptr","v":"0x0e8fcd24"},"kids_cap":{"t":"ptr","v":"0x0e8fcd24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb208"},"kids_end":{"t":"ptr","v":"0x0e9cb210"},"kids_cap":{"t":"ptr","v":"0x0e9cb210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fcb50"},"kids_end":{"t":"ptr","v":"0x0e8fcb5c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fcad8"},"kids_end":{"t":"ptr","v":"0x0e8fcae4"},"kids_cap":{"t":"ptr","v":"0x0e8fcae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e9cb218"},"kids_end":{"t":"ptr","v":"0x0e9cb220"},"kids_cap":{"t":"ptr","v":"0x0e9cb220"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9cb328"},"kids_end":{"t":"ptr","v":"0x0e9cb32c"},"kids_cap":{"t":"ptr","v":"0x0e9cb32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cb278"},"kids_end":{"t":"ptr","v":"0x0e9cb27c"},"kids_cap":{"t":"ptr","v":"0x0e9cb27c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fcc40"},"kids_end":{"t":"ptr","v":"0x0e8fcc4c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9cb298"},"kids_end":{"t":"ptr","v":"0x0e9cb29c"},"kids_cap":{"t":"ptr","v":"0x0e9cb29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb2a8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9cb3b8"},"kids_end":{"t":"ptr","v":"0x0e9cb3bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cb358"},"kids_end":{"t":"ptr","v":"0x0e9cb35c"},"kids_cap":{"t":"ptr","v":"0x0e9cb35c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fcb68"},"kids_end":{"t":"ptr","v":"0x0e8fcb74"},"kids_cap":{"t":"ptr","v":"0x0e8fcb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9cb448"},"kids_end":{"t":"ptr","v":"0x0e9cb44c"},"kids_cap":{"t":"ptr","v":"0x0e9cb44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb408"},"kids_end":{"t":"ptr","v":"0x0e9cb40c"},"kids_cap":{"t":"ptr","v":"0x0e9cb40c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb3e8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb4a8"},"kids_end":{"t":"ptr","v":"0x0e9cb4ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb4d8"},"kids_end":{"t":"ptr","v":"0x0e9cb4dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb498"},"kids_end":{"t":"ptr","v":"0x0e9cb49c"},"kids_cap":{"t":"ptr","v":"0x0e9cb49c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9cb3f8"},"kids_end":{"t":"ptr","v":"0x0e9cb3fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fcaf0"},"kids_end":{"t":"ptr","v":"0x0e8fcafc"},"kids_cap":{"t":"ptr","v":"0x0e8fcafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fcb08"},"kids_end":{"t":"ptr","v":"0x0e8fcb14"},"kids_cap":{"t":"ptr","v":"0x0e8fcb14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb3a8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb488"},"kids_end":{"t":"ptr","v":"0x0e9cb490"},"kids_cap":{"t":"ptr","v":"0x0e9cb490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cb4c8"},"kids_end":{"t":"ptr","v":"0x0e9cb4cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88ce18"},"kids_end":{"t":"ptr","v":"0x0e88ce2c"},"kids_cap":{"t":"ptr","v":"0x0e88ce2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fcb80"},"kids_end":{"t":"ptr","v":"0x0e8fcb8c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969de0"},"kids_end":{"t":"ptr","v":"0x0e969e04"},"kids_cap":{"t":"ptr","v":"0x0e969e04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fcc28"},"kids_end":{"t":"ptr","v":"0x0e8fcc34"},"kids_cap":{"t":"ptr","v":"0x0e8fcc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[86]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921a90"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e9cb348"},"kids_end":{"t":"ptr","v":"0x0e9cb34c"},"kids_cap":{"t":"ptr","v":"0x0e9cb34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[87]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04922318"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e9cb388"},"kids_end":{"t":"ptr","v":"0x0e9cb390"},"kids_cap":{"t":"ptr","v":"0x0e9cb390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[88]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920ab8"},"tech_id":{"t":"i32","v":88},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb4b8"},"kids_end":{"t":"ptr","v":"0x0e9cb4bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9cb458"},"kids_end":{"t":"ptr","v":"0x0e9cb45c"},"kids_cap":{"t":"ptr","v":"0x0e9cb45c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb468"},"kids_end":{"t":"ptr","v":"0x0e9cb46c"},"kids_cap":{"t":"ptr","v":"0x0e9cb46c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb478"},"kids_end":{"t":"ptr","v":"0x0e9cb47c"},"kids_cap":{"t":"ptr","v":"0x0e9cb47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb3d8"},"kids_end":{"t":"ptr","v":"0x0e9cb3dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb438"},"kids_end":{"t":"ptr","v":"0x0e9cb440"},"kids_cap":{"t":"ptr","v":"0x0e9cb440"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb368"},"kids_end":{"t":"ptr","v":"0x0e9cb370"},"kids_cap":{"t":"ptr","v":"0x0e9cb370"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d378"},"kids_end":{"t":"ptr","v":"0x0e88d38c"},"kids_cap":{"t":"ptr","v":"0x0e88d38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fcb20"},"kids_end":{"t":"ptr","v":"0x0e8fcb2c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb378"},"kids_end":{"t":"ptr","v":"0x0e9cb37c"},"kids_cap":{"t":"ptr","v":"0x0e9cb37c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb398"},"kids_end":{"t":"ptr","v":"0x0e9cb39c"},"kids_cap":{"t":"ptr","v":"0x0e9cb39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9cb3c8"},"kids_end":{"t":"ptr","v":"0x0e9cb3cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9cb418"},"kids_end":{"t":"ptr","v":"0x0e9cb41c"},"kids_cap":{"t":"ptr","v":"0x0e9cb41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e9cb428"},"kids_end":{"t":"ptr","v":"0x0e9cb430"},"kids_cap":{"t":"ptr","v":"0x0e9cb430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fccd0"},"kids_end":{"t":"ptr","v":"0x0e8fccdc"},"kids_cap":{"t":"ptr","v":"0x0e8fccdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e9c95d8"},"kids_end":{"t":"ptr","v":"0x0e9c95e0"},"kids_cap":{"t":"ptr","v":"0x0e9c95e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9c9638"},"kids_end":{"t":"ptr","v":"0x0e9c9640"},"kids_cap":{"t":"ptr","v":"0x0e9c9640"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e9c9718"},"kids_end":{"t":"ptr","v":"0x0e9c971c"},"kids_cap":{"t":"ptr","v":"0x0e9c971c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fcbf8"},"kids_end":{"t":"ptr","v":"0x0e8fcc04"},"kids_cap":{"t":"ptr","v":"0x0e8fcc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fcb38"},"kids_end":{"t":"ptr","v":"0x0e8fcb44"},"kids_cap":{"t":"ptr","v":"0x0e8fcb44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fcb98"},"kids_end":{"t":"ptr","v":"0x0e8fcba8"},"kids_cap":{"t":"ptr","v":"0x0e8fcba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9c96a8"},"kids_end":{"t":"ptr","v":"0x0e9c96b0"},"kids_cap":{"t":"ptr","v":"0x0e9c96b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9c9588"},"kids_end":{"t":"ptr","v":"0x0e9c958c"},"kids_cap":{"t":"ptr","v":"0x0e9c958c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fcbe0"},"kids_end":{"t":"ptr","v":"0x0e8fcbec"},"kids_cap":{"t":"ptr","v":"0x0e8fcbec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9c96f8"},"kids_end":{"t":"ptr","v":"0x0e9c96fc"},"kids_cap":{"t":"ptr","v":"0x0e9c96fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9c9598"},"kids_end":{"t":"ptr","v":"0x0e9c959c"},"kids_cap":{"t":"ptr","v":"0x0e9c959c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e9c95e8"},"kids_end":{"t":"ptr","v":"0x0e9c95ec"},"kids_cap":{"t":"ptr","v":"0x0e9c95ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e9c96d8"},"kids_end":{"t":"ptr","v":"0x0e9c96e0"},"kids_cap":{"t":"ptr","v":"0x0e9c96e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9c9618"},"kids_end":{"t":"ptr","v":"0x0e9c961c"},"kids_cap":{"t":"ptr","v":"0x0e9c961c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9c9548"},"kids_end":{"t":"ptr","v":"0x0e9c9550"},"kids_cap":{"t":"ptr","v":"0x0e9c9550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fcd00"},"kids_end":{"t":"ptr","v":"0x0e8fcd0c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e9c95a8"},"kids_end":{"t":"ptr","v":"0x0e9c95ac"},"kids_cap":{"t":"ptr","v":"0x0e9c95ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9c9708"},"kids_end":{"t":"ptr","v":"0x0e9c9710"},"kids_cap":{"t":"ptr","v":"0x0e9c9710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e9c9558"},"kids_end":{"t":"ptr","v":"0x0e9c955c"},"kids_cap":{"t":"ptr","v":"0x0e9c955c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e9c9698"},"kids_end":{"t":"ptr","v":"0x0e9c96a0"},"kids_cap":{"t":"ptr","v":"0x0e9c96a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9c9648"},"kids_end":{"t":"ptr","v":"0x0e9c9650"},"kids_cap":{"t":"ptr","v":"0x0e9c9650"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e9c9738"},"kids_end":{"t":"ptr","v":"0x0e9c9740"},"kids_cap":{"t":"ptr","v":"0x0e9c9740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e9c9728"},"kids_end":{"t":"ptr","v":"0x0e9c9730"},"kids_cap":{"t":"ptr","v":"0x0e9c9730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e9c96b8"},"kids_end":{"t":"ptr","v":"0x0e9c96bc"},"kids_cap":{"t":"ptr","v":"0x0e9c96bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9c9568"},"kids_end":{"t":"ptr","v":"0x0e9c956c"},"kids_cap":{"t":"ptr","v":"0x0e9c956c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9c9578"},"kids_end":{"t":"ptr","v":"0x0e9c9580"},"kids_cap":{"t":"ptr","v":"0x0e9c9580"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9c95c8"},"kids_end":{"t":"ptr","v":"0x0e9c95d0"},"kids_cap":{"t":"ptr","v":"0x0e9c95d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9c95b8"},"kids_end":{"t":"ptr","v":"0x0e9c95bc"},"kids_cap":{"t":"ptr","v":"0x0e9c95bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e9c95f8"},"kids_end":{"t":"ptr","v":"0x0e9c95fc"},"kids_cap":{"t":"ptr","v":"0x0e9c95fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9c9608"},"kids_end":{"t":"ptr","v":"0x0e9c9610"},"kids_cap":{"t":"ptr","v":"0x0e9c9610"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9c9628"},"kids_end":{"t":"ptr","v":"0x0e9c962c"},"kids_cap":{"t":"ptr","v":"0x0e9c962c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e9c9658"},"kids_end":{"t":"ptr","v":"0x0e9c965c"},"kids_cap":{"t":"ptr","v":"0x0e9c965c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9c9668"},"kids_end":{"t":"ptr","v":"0x0e9c9670"},"kids_cap":{"t":"ptr","v":"0x0e9c9670"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9c9678"},"kids_end":{"t":"ptr","v":"0x0e9c967c"},"kids_cap":{"t":"ptr","v":"0x0e9c967c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e9c96c8"},"kids_end":{"t":"ptr","v":"0x0e9c96cc"},"kids_cap":{"t":"ptr","v":"0x0e9c96cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fcbb0"},"kids_end":{"t":"ptr","v":"0x0e8fcbbc"},"kids_cap":{"t":"ptr","v":"0x0e8fcbbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fcd78"},"kids_end":{"t":"ptr","v":"0x0e8fcd88"},"kids_cap":{"t":"ptr","v":"0x0e8fcd88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9c96e8"},"kids_end":{"t":"ptr","v":"0x0e9c96f0"},"kids_cap":{"t":"ptr","v":"0x0e9c96f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e9c9688"},"kids_end":{"t":"ptr","v":"0x0e9c9690"},"kids_cap":{"t":"ptr","v":"0x0e9c9690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9c98e8"},"kids_end":{"t":"ptr","v":"0x0e9c98ec"},"kids_cap":{"t":"ptr","v":"0x0e9c98ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9c97a8"},"kids_end":{"t":"ptr","v":"0x0e9c97b0"},"kids_cap":{"t":"ptr","v":"0x0e9c97b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e9c98b8"},"kids_end":{"t":"ptr","v":"0x0e9c98c0"},"kids_cap":{"t":"ptr","v":"0x0e9c98c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9c98a8"},"kids_end":{"t":"ptr","v":"0x0e9c98b0"},"kids_cap":{"t":"ptr","v":"0x0e9c98b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e9c98d8"},"kids_end":{"t":"ptr","v":"0x0e9c98dc"},"kids_cap":{"t":"ptr","v":"0x0e9c98dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e9c9748"},"kids_end":{"t":"ptr","v":"0x0e9c974c"},"kids_cap":{"t":"ptr","v":"0x0e9c974c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9c9788"},"kids_end":{"t":"ptr","v":"0x0e9c9790"},"kids_cap":{"t":"ptr","v":"0x0e9c9790"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e9c9758"},"kids_end":{"t":"ptr","v":"0x0e9c975c"},"kids_cap":{"t":"ptr","v":"0x0e9c975c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fcd60"},"kids_end":{"t":"ptr","v":"0x0e8fcd6c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9c98c8"},"kids_end":{"t":"ptr","v":"0x0e9c98cc"},"kids_cap":{"t":"ptr","v":"0x0e9c98cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d098"},"kids_end":{"t":"ptr","v":"0x0e88d0ac"},"kids_cap":{"t":"ptr","v":"0x0e88d0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e9c98f8"},"kids_end":{"t":"ptr","v":"0x0e9c98fc"},"kids_cap":{"t":"ptr","v":"0x0e9c98fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e9c9878"},"kids_end":{"t":"ptr","v":"0x0e9c987c"},"kids_cap":{"t":"ptr","v":"0x0e9c987c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e9c9838"},"kids_end":{"t":"ptr","v":"0x0e9c983c"},"kids_cap":{"t":"ptr","v":"0x0e9c983c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9c9908"},"kids_end":{"t":"ptr","v":"0x0e9c990c"},"kids_cap":{"t":"ptr","v":"0x0e9c990c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9c9818"},"kids_end":{"t":"ptr","v":"0x0e9c981c"},"kids_cap":{"t":"ptr","v":"0x0e9c981c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fcd30"},"kids_end":{"t":"ptr","v":"0x0e8fcd40"},"kids_cap":{"t":"ptr","v":"0x0e8fcd40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fcbc8"},"kids_end":{"t":"ptr","v":"0x0e8fcbd4"},"kids_cap":{"t":"ptr","v":"0x0e8fcbd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[217]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e840"},"tech_id":{"t":"i32","v":217},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9c9928"},"kids_end":{"t":"ptr","v":"0x0e9c992c"},"kids_cap":{"t":"ptr","v":"0x0e9c992c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9c97c8"},"kids_end":{"t":"ptr","v":"0x0e9c97cc"},"kids_cap":{"t":"ptr","v":"0x0e9c97cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fcc58"},"kids_end":{"t":"ptr","v":"0x0e8fcc68"},"kids_cap":{"t":"ptr","v":"0x0e8fcc68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9c9798"},"kids_end":{"t":"ptr","v":"0x0e9c97a0"},"kids_cap":{"t":"ptr","v":"0x0e9c97a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9c9938"},"kids_end":{"t":"ptr","v":"0x0e9c993c"},"kids_cap":{"t":"ptr","v":"0x0e9c993c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e9c9778"},"kids_end":{"t":"ptr","v":"0x0e9c977c"},"kids_cap":{"t":"ptr","v":"0x0e9c977c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fcd48"},"kids_end":{"t":"ptr","v":"0x0e8fcd54"},"kids_cap":{"t":"ptr","v":"0x0e8fcd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9c9768"},"kids_end":{"t":"ptr","v":"0x0e9c9770"},"kids_cap":{"t":"ptr","v":"0x0e9c9770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d398"},"kids_end":{"t":"ptr","v":"0x0e88d3ac"},"kids_cap":{"t":"ptr","v":"0x0e88d3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e9c9888"},"kids_end":{"t":"ptr","v":"0x0e9c988c"},"kids_cap":{"t":"ptr","v":"0x0e9c988c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e9c97b8"},"kids_end":{"t":"ptr","v":"0x0e9c97bc"},"kids_cap":{"t":"ptr","v":"0x0e9c97bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9c9898"},"kids_end":{"t":"ptr","v":"0x0e9c989c"},"kids_cap":{"t":"ptr","v":"0x0e9c989c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e9c97d8"},"kids_end":{"t":"ptr","v":"0x0e9c97dc"},"kids_cap":{"t":"ptr","v":"0x0e9c97dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9c97e8"},"kids_end":{"t":"ptr","v":"0x0e9c97ec"},"kids_cap":{"t":"ptr","v":"0x0e9c97ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9c97f8"},"kids_end":{"t":"ptr","v":"0x0e9c9800"},"kids_cap":{"t":"ptr","v":"0x0e9c9800"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d078"},"kids_end":{"t":"ptr","v":"0x0e88d08c"},"kids_cap":{"t":"ptr","v":"0x0e88d08c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e9c9918"},"kids_end":{"t":"ptr","v":"0x0e9c991c"},"kids_cap":{"t":"ptr","v":"0x0e9c991c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9c9848"},"kids_end":{"t":"ptr","v":"0x0e9c984c"},"kids_cap":{"t":"ptr","v":"0x0e9c984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e9c9868"},"kids_end":{"t":"ptr","v":"0x0e9c986c"},"kids_cap":{"t":"ptr","v":"0x0e9c986c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9c9808"},"kids_end":{"t":"ptr","v":"0x0e9c9810"},"kids_cap":{"t":"ptr","v":"0x0e9c9810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9c9858"},"kids_end":{"t":"ptr","v":"0x0e9c9860"},"kids_cap":{"t":"ptr","v":"0x0e9c9860"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e9c9828"},"kids_end":{"t":"ptr","v":"0x0e9c9830"},"kids_cap":{"t":"ptr","v":"0x0e9c9830"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9c9e78"},"kids_end":{"t":"ptr","v":"0x0e9c9e7c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[253]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697168"},"tech_id":{"t":"i32","v":253},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9c9e88"},"kids_end":{"t":"ptr","v":"0x0e9c9e8c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fcc10"},"kids_end":{"t":"ptr","v":"0x0e8fcc1c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fca90"},"kids_end":{"t":"ptr","v":"0x0e8fca9c"},"kids_cap":{"t":"ptr","v":"0x0e8fca9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fcc70"},"kids_end":{"t":"ptr","v":"0x0e8fcc7c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fcaa8"},"kids_end":{"t":"ptr","v":"0x0e8fcab4"},"kids_cap":{"t":"ptr","v":"0x0e8fcab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fcc88"},"kids_end":{"t":"ptr","v":"0x0e8fcc94"},"kids_cap":{"t":"ptr","v":"0x0e8fcc94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[269]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699c10"},"tech_id":{"t":"i32","v":269},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d178"},"kids_end":{"t":"ptr","v":"0x0e88d190"},"kids_cap":{"t":"ptr","v":"0x0e88d190"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":80000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9ca0c8"},"kids_end":{"t":"ptr","v":"0x0e9ca0d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca0d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9ca088"},"kids_end":{"t":"ptr","v":"0x0e9ca090"},"kids_cap":{"t":"ptr","v":"0x0e9ca090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9c9f78"},"kids_end":{"t":"ptr","v":"0x0e9c9f80"},"kids_cap":{"t":"ptr","v":"0x0e9c9f80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e9c9f98"},"kids_end":{"t":"ptr","v":"0x0e9c9fa0"},"kids_cap":{"t":"ptr","v":"0x0e9c9fa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9c9fa8"},"kids_end":{"t":"ptr","v":"0x0e9c9fac"},"kids_cap":{"t":"ptr","v":"0x0e9c9fac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9ca098"},"kids_end":{"t":"ptr","v":"0x0e9ca09c"},"kids_cap":{"t":"ptr","v":"0x0e9ca09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca0e8"},"kids_end":{"t":"ptr","v":"0x0e9ca0ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9c9fe8"},"kids_end":{"t":"ptr","v":"0x0e9c9fec"},"kids_cap":{"t":"ptr","v":"0x0e9c9fec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca128"},"kids_end":{"t":"ptr","v":"0x0e9ca12c"},"kids_cap":{"t":"ptr","v":"0x0e9ca12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca008"},"kids_end":{"t":"ptr","v":"0x0e9ca00c"},"kids_cap":{"t":"ptr","v":"0x0e9ca00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca0f8"},"kids_end":{"t":"ptr","v":"0x0e9ca0fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9ca0d8"},"kids_end":{"t":"ptr","v":"0x0e9ca0dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9ca058"},"kids_end":{"t":"ptr","v":"0x0e9ca05c"},"kids_cap":{"t":"ptr","v":"0x0e9ca05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9c9fc8"},"kids_end":{"t":"ptr","v":"0x0e9c9fcc"},"kids_cap":{"t":"ptr","v":"0x0e9c9fcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9ca018"},"kids_end":{"t":"ptr","v":"0x0e9ca01c"},"kids_cap":{"t":"ptr","v":"0x0e9ca01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["player","tree_header"],"undeclared":[],"n":0}} +{"ts":271044325,"hook":"Game::TechTree::ProcessResearch","mode":"compare","call_id":2,"thread":1412,"depth":0,"args":[{"t":"ptr","v":"0x0e93bea0","n":"tree"},{"t":"ptr","v":"0x0e90c540","n":"owner"},{"t":"i32","v":2,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e96ad78","n":"rng"},{"t":"i32","v":431,"n":"rng_left_in"},{"t":"list","v":[{"t":"struct","v":{"tech_id":{"t":"i32","v":9},"points":{"t":"i32","v":0}}}],"n":"alloc"},{"t":"i32","v":0,"n":"overbudget_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":431},"next_index":{"t":"i64","v":193}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":431},"next_index":{"t":"i64","v":193}}}},"overbudget":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9caf28"},"kids_end":{"t":"ptr","v":"0x0e9caf2c"},"kids_cap":{"t":"ptr","v":"0x0e9caf2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9caf28"},"kids_end":{"t":"ptr","v":"0x0e9caf2c"},"kids_cap":{"t":"ptr","v":"0x0e9caf2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cae68"},"kids_end":{"t":"ptr","v":"0x0e9cae6c"},"kids_cap":{"t":"ptr","v":"0x0e9cae6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cae68"},"kids_end":{"t":"ptr","v":"0x0e9cae6c"},"kids_cap":{"t":"ptr","v":"0x0e9cae6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cadf8"},"kids_end":{"t":"ptr","v":"0x0e9cadfc"},"kids_cap":{"t":"ptr","v":"0x0e9cadfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cadf8"},"kids_end":{"t":"ptr","v":"0x0e9cadfc"},"kids_cap":{"t":"ptr","v":"0x0e9cadfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9caea8"},"kids_end":{"t":"ptr","v":"0x0e9caeb0"},"kids_cap":{"t":"ptr","v":"0x0e9caeb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9caea8"},"kids_end":{"t":"ptr","v":"0x0e9caeb0"},"kids_cap":{"t":"ptr","v":"0x0e9caeb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9caf38"},"kids_end":{"t":"ptr","v":"0x0e9caf40"},"kids_cap":{"t":"ptr","v":"0x0e9caf40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9caf38"},"kids_end":{"t":"ptr","v":"0x0e9caf40"},"kids_cap":{"t":"ptr","v":"0x0e9caf40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cad68"},"kids_end":{"t":"ptr","v":"0x0e9cad6c"},"kids_cap":{"t":"ptr","v":"0x0e9cad6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cad68"},"kids_end":{"t":"ptr","v":"0x0e9cad6c"},"kids_cap":{"t":"ptr","v":"0x0e9cad6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9caeb8"},"kids_end":{"t":"ptr","v":"0x0e9caebc"},"kids_cap":{"t":"ptr","v":"0x0e9caebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9caeb8"},"kids_end":{"t":"ptr","v":"0x0e9caebc"},"kids_cap":{"t":"ptr","v":"0x0e9caebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9caef8"},"kids_end":{"t":"ptr","v":"0x0e9caefc"},"kids_cap":{"t":"ptr","v":"0x0e9caefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9caef8"},"kids_end":{"t":"ptr","v":"0x0e9caefc"},"kids_cap":{"t":"ptr","v":"0x0e9caefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe0e0"},"kids_end":{"t":"ptr","v":"0x0e8fe0ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe0e0"},"kids_end":{"t":"ptr","v":"0x0e8fe0ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cad88"},"kids_end":{"t":"ptr","v":"0x0e9cad90"},"kids_cap":{"t":"ptr","v":"0x0e9cad90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cad88"},"kids_end":{"t":"ptr","v":"0x0e9cad90"},"kids_cap":{"t":"ptr","v":"0x0e9cad90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe038"},"kids_end":{"t":"ptr","v":"0x0e8fe048"},"kids_cap":{"t":"ptr","v":"0x0e8fe048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe038"},"kids_end":{"t":"ptr","v":"0x0e8fe048"},"kids_cap":{"t":"ptr","v":"0x0e8fe048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cadb8"},"kids_end":{"t":"ptr","v":"0x0e9cadbc"},"kids_cap":{"t":"ptr","v":"0x0e9cadbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cadb8"},"kids_end":{"t":"ptr","v":"0x0e9cadbc"},"kids_cap":{"t":"ptr","v":"0x0e9cadbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cae98"},"kids_end":{"t":"ptr","v":"0x0e9cae9c"},"kids_cap":{"t":"ptr","v":"0x0e9cae9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cae98"},"kids_end":{"t":"ptr","v":"0x0e9cae9c"},"kids_cap":{"t":"ptr","v":"0x0e9cae9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fdf90"},"kids_end":{"t":"ptr","v":"0x0e8fdf9c"},"kids_cap":{"t":"ptr","v":"0x0e8fdf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fdf90"},"kids_end":{"t":"ptr","v":"0x0e8fdf9c"},"kids_cap":{"t":"ptr","v":"0x0e8fdf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9caec8"},"kids_end":{"t":"ptr","v":"0x0e9caecc"},"kids_cap":{"t":"ptr","v":"0x0e9caecc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9caec8"},"kids_end":{"t":"ptr","v":"0x0e9caecc"},"kids_cap":{"t":"ptr","v":"0x0e9caecc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cae08"},"kids_end":{"t":"ptr","v":"0x0e9cae0c"},"kids_cap":{"t":"ptr","v":"0x0e9cae0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cae08"},"kids_end":{"t":"ptr","v":"0x0e9cae0c"},"kids_cap":{"t":"ptr","v":"0x0e9cae0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9caed8"},"kids_end":{"t":"ptr","v":"0x0e9caedc"},"kids_cap":{"t":"ptr","v":"0x0e9caedc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9caed8"},"kids_end":{"t":"ptr","v":"0x0e9caedc"},"kids_cap":{"t":"ptr","v":"0x0e9caedc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fdfd8"},"kids_end":{"t":"ptr","v":"0x0e8fdfe4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fdfd8"},"kids_end":{"t":"ptr","v":"0x0e8fdfe4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe158"},"kids_end":{"t":"ptr","v":"0x0e8fe168"},"kids_cap":{"t":"ptr","v":"0x0e8fe168"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe158"},"kids_end":{"t":"ptr","v":"0x0e8fe168"},"kids_cap":{"t":"ptr","v":"0x0e8fe168"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cae18"},"kids_end":{"t":"ptr","v":"0x0e9cae1c"},"kids_cap":{"t":"ptr","v":"0x0e9cae1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cae18"},"kids_end":{"t":"ptr","v":"0x0e9cae1c"},"kids_cap":{"t":"ptr","v":"0x0e9cae1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cae28"},"kids_end":{"t":"ptr","v":"0x0e9cae2c"},"kids_cap":{"t":"ptr","v":"0x0e9cae2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cae28"},"kids_end":{"t":"ptr","v":"0x0e9cae2c"},"kids_cap":{"t":"ptr","v":"0x0e9cae2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb068"},"kids_end":{"t":"ptr","v":"0x0e9cb06c"},"kids_cap":{"t":"ptr","v":"0x0e9cb06c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb068"},"kids_end":{"t":"ptr","v":"0x0e9cb06c"},"kids_cap":{"t":"ptr","v":"0x0e9cb06c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb0d8"},"kids_end":{"t":"ptr","v":"0x0e9cb0dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb0d8"},"kids_end":{"t":"ptr","v":"0x0e9cb0dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9caf48"},"kids_end":{"t":"ptr","v":"0x0e9caf50"},"kids_cap":{"t":"ptr","v":"0x0e9caf50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9caf48"},"kids_end":{"t":"ptr","v":"0x0e9caf50"},"kids_cap":{"t":"ptr","v":"0x0e9caf50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe098"},"kids_end":{"t":"ptr","v":"0x0e8fe0a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe098"},"kids_end":{"t":"ptr","v":"0x0e8fe0a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb088"},"kids_end":{"t":"ptr","v":"0x0e9cb090"},"kids_cap":{"t":"ptr","v":"0x0e9cb090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb088"},"kids_end":{"t":"ptr","v":"0x0e9cb090"},"kids_cap":{"t":"ptr","v":"0x0e9cb090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fdfa8"},"kids_end":{"t":"ptr","v":"0x0e8fdfb4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fdfa8"},"kids_end":{"t":"ptr","v":"0x0e8fdfb4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe1a0"},"kids_end":{"t":"ptr","v":"0x0e8fe1ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe1a0"},"kids_end":{"t":"ptr","v":"0x0e8fe1ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe008"},"kids_end":{"t":"ptr","v":"0x0e8fe014"},"kids_cap":{"t":"ptr","v":"0x0e8fe014"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe008"},"kids_end":{"t":"ptr","v":"0x0e8fe014"},"kids_cap":{"t":"ptr","v":"0x0e8fe014"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9caf98"},"kids_end":{"t":"ptr","v":"0x0e9caf9c"},"kids_cap":{"t":"ptr","v":"0x0e9caf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9caf98"},"kids_end":{"t":"ptr","v":"0x0e9caf9c"},"kids_cap":{"t":"ptr","v":"0x0e9caf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cafd8"},"kids_end":{"t":"ptr","v":"0x0e9cafdc"},"kids_cap":{"t":"ptr","v":"0x0e9cafdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cafd8"},"kids_end":{"t":"ptr","v":"0x0e9cafdc"},"kids_cap":{"t":"ptr","v":"0x0e9cafdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe050"},"kids_end":{"t":"ptr","v":"0x0e8fe05c"},"kids_cap":{"t":"ptr","v":"0x0e8fe05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe050"},"kids_end":{"t":"ptr","v":"0x0e8fe05c"},"kids_cap":{"t":"ptr","v":"0x0e8fe05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9caf58"},"kids_end":{"t":"ptr","v":"0x0e9caf5c"},"kids_cap":{"t":"ptr","v":"0x0e9caf5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9caf58"},"kids_end":{"t":"ptr","v":"0x0e9caf5c"},"kids_cap":{"t":"ptr","v":"0x0e9caf5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9cb0e8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9cb0e8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb0f8"},"kids_end":{"t":"ptr","v":"0x0e9cb0fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb0f8"},"kids_end":{"t":"ptr","v":"0x0e9cb0fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9caf68"},"kids_end":{"t":"ptr","v":"0x0e9caf6c"},"kids_cap":{"t":"ptr","v":"0x0e9caf6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9caf68"},"kids_end":{"t":"ptr","v":"0x0e9caf6c"},"kids_cap":{"t":"ptr","v":"0x0e9caf6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cafc8"},"kids_end":{"t":"ptr","v":"0x0e9cafcc"},"kids_cap":{"t":"ptr","v":"0x0e9cafcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cafc8"},"kids_end":{"t":"ptr","v":"0x0e9cafcc"},"kids_cap":{"t":"ptr","v":"0x0e9cafcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe1d0"},"kids_end":{"t":"ptr","v":"0x0e8fe1dc"},"kids_cap":{"t":"ptr","v":"0x0e8fe1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe1d0"},"kids_end":{"t":"ptr","v":"0x0e8fe1dc"},"kids_cap":{"t":"ptr","v":"0x0e8fe1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9caf78"},"kids_end":{"t":"ptr","v":"0x0e9caf7c"},"kids_cap":{"t":"ptr","v":"0x0e9caf7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9caf78"},"kids_end":{"t":"ptr","v":"0x0e9caf7c"},"kids_cap":{"t":"ptr","v":"0x0e9caf7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb118"},"kids_end":{"t":"ptr","v":"0x0e9cb11c"},"kids_cap":{"t":"ptr","v":"0x0e9cb11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb118"},"kids_end":{"t":"ptr","v":"0x0e9cb11c"},"kids_cap":{"t":"ptr","v":"0x0e9cb11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb108"},"kids_end":{"t":"ptr","v":"0x0e9cb10c"},"kids_cap":{"t":"ptr","v":"0x0e9cb10c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb108"},"kids_end":{"t":"ptr","v":"0x0e9cb10c"},"kids_cap":{"t":"ptr","v":"0x0e9cb10c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb0c8"},"kids_end":{"t":"ptr","v":"0x0e9cb0cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb0c8"},"kids_end":{"t":"ptr","v":"0x0e9cb0cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb098"},"kids_end":{"t":"ptr","v":"0x0e9cb09c"},"kids_cap":{"t":"ptr","v":"0x0e9cb09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb098"},"kids_end":{"t":"ptr","v":"0x0e9cb09c"},"kids_cap":{"t":"ptr","v":"0x0e9cb09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb128"},"kids_end":{"t":"ptr","v":"0x0e9cb12c"},"kids_cap":{"t":"ptr","v":"0x0e9cb12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb128"},"kids_end":{"t":"ptr","v":"0x0e9cb12c"},"kids_cap":{"t":"ptr","v":"0x0e9cb12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9caf88"},"kids_end":{"t":"ptr","v":"0x0e9caf8c"},"kids_cap":{"t":"ptr","v":"0x0e9caf8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9caf88"},"kids_end":{"t":"ptr","v":"0x0e9caf8c"},"kids_cap":{"t":"ptr","v":"0x0e9caf8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe1b8"},"kids_end":{"t":"ptr","v":"0x0e8fe1c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe1b8"},"kids_end":{"t":"ptr","v":"0x0e8fe1c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fdfc0"},"kids_end":{"t":"ptr","v":"0x0e8fdfcc"},"kids_cap":{"t":"ptr","v":"0x0e8fdfcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fdfc0"},"kids_end":{"t":"ptr","v":"0x0e8fdfcc"},"kids_cap":{"t":"ptr","v":"0x0e8fdfcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb078"},"kids_end":{"t":"ptr","v":"0x0e9cb07c"},"kids_cap":{"t":"ptr","v":"0x0e9cb07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb078"},"kids_end":{"t":"ptr","v":"0x0e9cb07c"},"kids_cap":{"t":"ptr","v":"0x0e9cb07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb008"},"kids_end":{"t":"ptr","v":"0x0e9cb010"},"kids_cap":{"t":"ptr","v":"0x0e9cb010"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb008"},"kids_end":{"t":"ptr","v":"0x0e9cb010"},"kids_cap":{"t":"ptr","v":"0x0e9cb010"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cafa8"},"kids_end":{"t":"ptr","v":"0x0e9cafb0"},"kids_cap":{"t":"ptr","v":"0x0e9cafb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cafa8"},"kids_end":{"t":"ptr","v":"0x0e9cafb0"},"kids_cap":{"t":"ptr","v":"0x0e9cafb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88d218"},"kids_end":{"t":"ptr","v":"0x0e88d22c"},"kids_cap":{"t":"ptr","v":"0x0e88d22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88d218"},"kids_end":{"t":"ptr","v":"0x0e88d22c"},"kids_cap":{"t":"ptr","v":"0x0e88d22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fdff0"},"kids_end":{"t":"ptr","v":"0x0e8fdffc"},"kids_cap":{"t":"ptr","v":"0x0e8fdffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fdff0"},"kids_end":{"t":"ptr","v":"0x0e8fdffc"},"kids_cap":{"t":"ptr","v":"0x0e8fdffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969f00"},"kids_end":{"t":"ptr","v":"0x0e969f24"},"kids_cap":{"t":"ptr","v":"0x0e969f24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969f00"},"kids_end":{"t":"ptr","v":"0x0e969f24"},"kids_cap":{"t":"ptr","v":"0x0e969f24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9cafe8"},"kids_end":{"t":"ptr","v":"0x0e9cafec"},"kids_cap":{"t":"ptr","v":"0x0e9cafec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9cafe8"},"kids_end":{"t":"ptr","v":"0x0e9cafec"},"kids_cap":{"t":"ptr","v":"0x0e9cafec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9cafb8"},"kids_end":{"t":"ptr","v":"0x0e9cafbc"},"kids_cap":{"t":"ptr","v":"0x0e9cafbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9cafb8"},"kids_end":{"t":"ptr","v":"0x0e9cafbc"},"kids_cap":{"t":"ptr","v":"0x0e9cafbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fe110"},"kids_end":{"t":"ptr","v":"0x0e8fe11c"},"kids_cap":{"t":"ptr","v":"0x0e8fe11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fe110"},"kids_end":{"t":"ptr","v":"0x0e8fe11c"},"kids_cap":{"t":"ptr","v":"0x0e8fe11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb138"},"kids_end":{"t":"ptr","v":"0x0e9cb13c"},"kids_cap":{"t":"ptr","v":"0x0e9cb13c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb138"},"kids_end":{"t":"ptr","v":"0x0e9cb13c"},"kids_cap":{"t":"ptr","v":"0x0e9cb13c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9caff8"},"kids_end":{"t":"ptr","v":"0x0e9caffc"},"kids_cap":{"t":"ptr","v":"0x0e9caffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9caff8"},"kids_end":{"t":"ptr","v":"0x0e9caffc"},"kids_cap":{"t":"ptr","v":"0x0e9caffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb018"},"kids_end":{"t":"ptr","v":"0x0e9cb01c"},"kids_cap":{"t":"ptr","v":"0x0e9cb01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb018"},"kids_end":{"t":"ptr","v":"0x0e9cb01c"},"kids_cap":{"t":"ptr","v":"0x0e9cb01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb0a8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb0a8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb028"},"kids_end":{"t":"ptr","v":"0x0e9cb02c"},"kids_cap":{"t":"ptr","v":"0x0e9cb02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb028"},"kids_end":{"t":"ptr","v":"0x0e9cb02c"},"kids_cap":{"t":"ptr","v":"0x0e9cb02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb038"},"kids_end":{"t":"ptr","v":"0x0e9cb040"},"kids_cap":{"t":"ptr","v":"0x0e9cb040"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb038"},"kids_end":{"t":"ptr","v":"0x0e9cb040"},"kids_cap":{"t":"ptr","v":"0x0e9cb040"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb048"},"kids_end":{"t":"ptr","v":"0x0e9cb050"},"kids_cap":{"t":"ptr","v":"0x0e9cb050"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb048"},"kids_end":{"t":"ptr","v":"0x0e9cb050"},"kids_cap":{"t":"ptr","v":"0x0e9cb050"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d358"},"kids_end":{"t":"ptr","v":"0x0e88d36c"},"kids_cap":{"t":"ptr","v":"0x0e88d36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d358"},"kids_end":{"t":"ptr","v":"0x0e88d36c"},"kids_cap":{"t":"ptr","v":"0x0e88d36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe218"},"kids_end":{"t":"ptr","v":"0x0e8fe224"},"kids_cap":{"t":"ptr","v":"0x0e8fe224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe218"},"kids_end":{"t":"ptr","v":"0x0e8fe224"},"kids_cap":{"t":"ptr","v":"0x0e8fe224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb058"},"kids_end":{"t":"ptr","v":"0x0e9cb05c"},"kids_cap":{"t":"ptr","v":"0x0e9cb05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb058"},"kids_end":{"t":"ptr","v":"0x0e9cb05c"},"kids_cap":{"t":"ptr","v":"0x0e9cb05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb0b8"},"kids_end":{"t":"ptr","v":"0x0e9cb0bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb0b8"},"kids_end":{"t":"ptr","v":"0x0e9cb0bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e92edd8"},"kids_end":{"t":"ptr","v":"0x0e92eddc"},"kids_cap":{"t":"ptr","v":"0x0e92eddc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e92edd8"},"kids_end":{"t":"ptr","v":"0x0e92eddc"},"kids_cap":{"t":"ptr","v":"0x0e92eddc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e92ed78"},"kids_end":{"t":"ptr","v":"0x0e92ed7c"},"kids_cap":{"t":"ptr","v":"0x0e92ed7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e92ed78"},"kids_end":{"t":"ptr","v":"0x0e92ed7c"},"kids_cap":{"t":"ptr","v":"0x0e92ed7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e92ede8"},"kids_end":{"t":"ptr","v":"0x0e92edf0"},"kids_cap":{"t":"ptr","v":"0x0e92edf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e92ede8"},"kids_end":{"t":"ptr","v":"0x0e92edf0"},"kids_cap":{"t":"ptr","v":"0x0e92edf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe020"},"kids_end":{"t":"ptr","v":"0x0e8fe02c"},"kids_cap":{"t":"ptr","v":"0x0e8fe02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe020"},"kids_end":{"t":"ptr","v":"0x0e8fe02c"},"kids_cap":{"t":"ptr","v":"0x0e8fe02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e92edb8"},"kids_end":{"t":"ptr","v":"0x0e92edc0"},"kids_cap":{"t":"ptr","v":"0x0e92edc0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e92edb8"},"kids_end":{"t":"ptr","v":"0x0e92edc0"},"kids_cap":{"t":"ptr","v":"0x0e92edc0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e92ee48"},"kids_end":{"t":"ptr","v":"0x0e92ee50"},"kids_cap":{"t":"ptr","v":"0x0e92ee50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e92ee48"},"kids_end":{"t":"ptr","v":"0x0e92ee50"},"kids_cap":{"t":"ptr","v":"0x0e92ee50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e92eeb8"},"kids_end":{"t":"ptr","v":"0x0e92eebc"},"kids_cap":{"t":"ptr","v":"0x0e92eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e92eeb8"},"kids_end":{"t":"ptr","v":"0x0e92eebc"},"kids_cap":{"t":"ptr","v":"0x0e92eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe0c8"},"kids_end":{"t":"ptr","v":"0x0e8fe0d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe0c8"},"kids_end":{"t":"ptr","v":"0x0e8fe0d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fe0f8"},"kids_end":{"t":"ptr","v":"0x0e8fe104"},"kids_cap":{"t":"ptr","v":"0x0e8fe104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fe0f8"},"kids_end":{"t":"ptr","v":"0x0e8fe104"},"kids_cap":{"t":"ptr","v":"0x0e8fe104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe350"},"kids_end":{"t":"ptr","v":"0x0e8fe360"},"kids_cap":{"t":"ptr","v":"0x0e8fe360"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe350"},"kids_end":{"t":"ptr","v":"0x0e8fe360"},"kids_cap":{"t":"ptr","v":"0x0e8fe360"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e92eec8"},"kids_end":{"t":"ptr","v":"0x0e92eed0"},"kids_cap":{"t":"ptr","v":"0x0e92eed0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e92eec8"},"kids_end":{"t":"ptr","v":"0x0e92eed0"},"kids_cap":{"t":"ptr","v":"0x0e92eed0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e92ee18"},"kids_end":{"t":"ptr","v":"0x0e92ee1c"},"kids_cap":{"t":"ptr","v":"0x0e92ee1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e92ee18"},"kids_end":{"t":"ptr","v":"0x0e92ee1c"},"kids_cap":{"t":"ptr","v":"0x0e92ee1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe380"},"kids_end":{"t":"ptr","v":"0x0e8fe38c"},"kids_cap":{"t":"ptr","v":"0x0e8fe38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe380"},"kids_end":{"t":"ptr","v":"0x0e8fe38c"},"kids_cap":{"t":"ptr","v":"0x0e8fe38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e92ee58"},"kids_end":{"t":"ptr","v":"0x0e92ee5c"},"kids_cap":{"t":"ptr","v":"0x0e92ee5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e92ee58"},"kids_end":{"t":"ptr","v":"0x0e92ee5c"},"kids_cap":{"t":"ptr","v":"0x0e92ee5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e92edc8"},"kids_end":{"t":"ptr","v":"0x0e92edcc"},"kids_cap":{"t":"ptr","v":"0x0e92edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e92edc8"},"kids_end":{"t":"ptr","v":"0x0e92edcc"},"kids_cap":{"t":"ptr","v":"0x0e92edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e92ee28"},"kids_end":{"t":"ptr","v":"0x0e92ee2c"},"kids_cap":{"t":"ptr","v":"0x0e92ee2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e92ee28"},"kids_end":{"t":"ptr","v":"0x0e92ee2c"},"kids_cap":{"t":"ptr","v":"0x0e92ee2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e92ece8"},"kids_end":{"t":"ptr","v":"0x0e92ecec"},"kids_cap":{"t":"ptr","v":"0x0e92ecec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e92ece8"},"kids_end":{"t":"ptr","v":"0x0e92ecec"},"kids_cap":{"t":"ptr","v":"0x0e92ecec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe3e0"},"kids_end":{"t":"ptr","v":"0x0e8fe3ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe3e0"},"kids_end":{"t":"ptr","v":"0x0e8fe3ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e92ed38"},"kids_end":{"t":"ptr","v":"0x0e92ed3c"},"kids_cap":{"t":"ptr","v":"0x0e92ed3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e92ed38"},"kids_end":{"t":"ptr","v":"0x0e92ed3c"},"kids_cap":{"t":"ptr","v":"0x0e92ed3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e92ed58"},"kids_end":{"t":"ptr","v":"0x0e92ed60"},"kids_cap":{"t":"ptr","v":"0x0e92ed60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e92ed58"},"kids_end":{"t":"ptr","v":"0x0e92ed60"},"kids_cap":{"t":"ptr","v":"0x0e92ed60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fe6f8"},"kids_end":{"t":"ptr","v":"0x0e8fe704"},"kids_cap":{"t":"ptr","v":"0x0e8fe704"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fe6f8"},"kids_end":{"t":"ptr","v":"0x0e8fe704"},"kids_cap":{"t":"ptr","v":"0x0e8fe704"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e92edf8"},"kids_end":{"t":"ptr","v":"0x0e92edfc"},"kids_cap":{"t":"ptr","v":"0x0e92edfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e92edf8"},"kids_end":{"t":"ptr","v":"0x0e92edfc"},"kids_cap":{"t":"ptr","v":"0x0e92edfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e92ee38"},"kids_end":{"t":"ptr","v":"0x0e92ee40"},"kids_cap":{"t":"ptr","v":"0x0e92ee40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e92ee38"},"kids_end":{"t":"ptr","v":"0x0e92ee40"},"kids_cap":{"t":"ptr","v":"0x0e92ee40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e92ee08"},"kids_end":{"t":"ptr","v":"0x0e92ee0c"},"kids_cap":{"t":"ptr","v":"0x0e92ee0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e92ee08"},"kids_end":{"t":"ptr","v":"0x0e92ee0c"},"kids_cap":{"t":"ptr","v":"0x0e92ee0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e92ee68"},"kids_end":{"t":"ptr","v":"0x0e92ee70"},"kids_cap":{"t":"ptr","v":"0x0e92ee70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e92ee68"},"kids_end":{"t":"ptr","v":"0x0e92ee70"},"kids_cap":{"t":"ptr","v":"0x0e92ee70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e92ee78"},"kids_end":{"t":"ptr","v":"0x0e92ee80"},"kids_cap":{"t":"ptr","v":"0x0e92ee80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e92ee78"},"kids_end":{"t":"ptr","v":"0x0e92ee80"},"kids_cap":{"t":"ptr","v":"0x0e92ee80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e92ed48"},"kids_end":{"t":"ptr","v":"0x0e92ed50"},"kids_cap":{"t":"ptr","v":"0x0e92ed50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e92ed48"},"kids_end":{"t":"ptr","v":"0x0e92ed50"},"kids_cap":{"t":"ptr","v":"0x0e92ed50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e92eed8"},"kids_end":{"t":"ptr","v":"0x0e92eee0"},"kids_cap":{"t":"ptr","v":"0x0e92eee0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e92eed8"},"kids_end":{"t":"ptr","v":"0x0e92eee0"},"kids_cap":{"t":"ptr","v":"0x0e92eee0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e92ed88"},"kids_end":{"t":"ptr","v":"0x0e92ed8c"},"kids_cap":{"t":"ptr","v":"0x0e92ed8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e92ed88"},"kids_end":{"t":"ptr","v":"0x0e92ed8c"},"kids_cap":{"t":"ptr","v":"0x0e92ed8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e92ed68"},"kids_end":{"t":"ptr","v":"0x0e92ed6c"},"kids_cap":{"t":"ptr","v":"0x0e92ed6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e92ed68"},"kids_end":{"t":"ptr","v":"0x0e92ed6c"},"kids_cap":{"t":"ptr","v":"0x0e92ed6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e92ecf8"},"kids_end":{"t":"ptr","v":"0x0e92ed00"},"kids_cap":{"t":"ptr","v":"0x0e92ed00"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e92ecf8"},"kids_end":{"t":"ptr","v":"0x0e92ed00"},"kids_cap":{"t":"ptr","v":"0x0e92ed00"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e92ed08"},"kids_end":{"t":"ptr","v":"0x0e92ed10"},"kids_cap":{"t":"ptr","v":"0x0e92ed10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e92ed08"},"kids_end":{"t":"ptr","v":"0x0e92ed10"},"kids_cap":{"t":"ptr","v":"0x0e92ed10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e92ee98"},"kids_end":{"t":"ptr","v":"0x0e92ee9c"},"kids_cap":{"t":"ptr","v":"0x0e92ee9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e92ee98"},"kids_end":{"t":"ptr","v":"0x0e92ee9c"},"kids_cap":{"t":"ptr","v":"0x0e92ee9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e92ed18"},"kids_end":{"t":"ptr","v":"0x0e92ed1c"},"kids_cap":{"t":"ptr","v":"0x0e92ed1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e92ed18"},"kids_end":{"t":"ptr","v":"0x0e92ed1c"},"kids_cap":{"t":"ptr","v":"0x0e92ed1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e92ee88"},"kids_end":{"t":"ptr","v":"0x0e92ee90"},"kids_cap":{"t":"ptr","v":"0x0e92ee90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e92ee88"},"kids_end":{"t":"ptr","v":"0x0e92ee90"},"kids_cap":{"t":"ptr","v":"0x0e92ee90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e92eea8"},"kids_end":{"t":"ptr","v":"0x0e92eeac"},"kids_cap":{"t":"ptr","v":"0x0e92eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e92eea8"},"kids_end":{"t":"ptr","v":"0x0e92eeac"},"kids_cap":{"t":"ptr","v":"0x0e92eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e92ed28"},"kids_end":{"t":"ptr","v":"0x0e92ed2c"},"kids_cap":{"t":"ptr","v":"0x0e92ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e92ed28"},"kids_end":{"t":"ptr","v":"0x0e92ed2c"},"kids_cap":{"t":"ptr","v":"0x0e92ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e92ed98"},"kids_end":{"t":"ptr","v":"0x0e92eda0"},"kids_cap":{"t":"ptr","v":"0x0e92eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e92ed98"},"kids_end":{"t":"ptr","v":"0x0e92eda0"},"kids_cap":{"t":"ptr","v":"0x0e92eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e92eda8"},"kids_end":{"t":"ptr","v":"0x0e92edac"},"kids_cap":{"t":"ptr","v":"0x0e92edac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e92eda8"},"kids_end":{"t":"ptr","v":"0x0e92edac"},"kids_cap":{"t":"ptr","v":"0x0e92edac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e92f7a8"},"kids_end":{"t":"ptr","v":"0x0e92f7ac"},"kids_cap":{"t":"ptr","v":"0x0e92f7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e92f7a8"},"kids_end":{"t":"ptr","v":"0x0e92f7ac"},"kids_cap":{"t":"ptr","v":"0x0e92f7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fe6c8"},"kids_end":{"t":"ptr","v":"0x0e8fe6d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fe6c8"},"kids_end":{"t":"ptr","v":"0x0e8fe6d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fe620"},"kids_end":{"t":"ptr","v":"0x0e8fe630"},"kids_cap":{"t":"ptr","v":"0x0e8fe630"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fe620"},"kids_end":{"t":"ptr","v":"0x0e8fe630"},"kids_cap":{"t":"ptr","v":"0x0e8fe630"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e92f6e8"},"kids_end":{"t":"ptr","v":"0x0e92f6f0"},"kids_cap":{"t":"ptr","v":"0x0e92f6f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e92f6e8"},"kids_end":{"t":"ptr","v":"0x0e92f6f0"},"kids_cap":{"t":"ptr","v":"0x0e92f6f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e92f7b8"},"kids_end":{"t":"ptr","v":"0x0e92f7c0"},"kids_cap":{"t":"ptr","v":"0x0e92f7c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e92f7b8"},"kids_end":{"t":"ptr","v":"0x0e92f7c0"},"kids_cap":{"t":"ptr","v":"0x0e92f7c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e92f818"},"kids_end":{"t":"ptr","v":"0x0e92f81c"},"kids_cap":{"t":"ptr","v":"0x0e92f81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e92f818"},"kids_end":{"t":"ptr","v":"0x0e92f81c"},"kids_cap":{"t":"ptr","v":"0x0e92f81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e92f6f8"},"kids_end":{"t":"ptr","v":"0x0e92f700"},"kids_cap":{"t":"ptr","v":"0x0e92f700"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e92f6f8"},"kids_end":{"t":"ptr","v":"0x0e92f700"},"kids_cap":{"t":"ptr","v":"0x0e92f700"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e92f7d8"},"kids_end":{"t":"ptr","v":"0x0e92f7e0"},"kids_cap":{"t":"ptr","v":"0x0e92f7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e92f7d8"},"kids_end":{"t":"ptr","v":"0x0e92f7e0"},"kids_cap":{"t":"ptr","v":"0x0e92f7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e92f708"},"kids_end":{"t":"ptr","v":"0x0e92f710"},"kids_cap":{"t":"ptr","v":"0x0e92f710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e92f708"},"kids_end":{"t":"ptr","v":"0x0e92f710"},"kids_cap":{"t":"ptr","v":"0x0e92f710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e92f7e8"},"kids_end":{"t":"ptr","v":"0x0e92f7ec"},"kids_cap":{"t":"ptr","v":"0x0e92f7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e92f7e8"},"kids_end":{"t":"ptr","v":"0x0e92f7ec"},"kids_cap":{"t":"ptr","v":"0x0e92f7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e92f7f8"},"kids_end":{"t":"ptr","v":"0x0e92f7fc"},"kids_cap":{"t":"ptr","v":"0x0e92f7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e92f7f8"},"kids_end":{"t":"ptr","v":"0x0e92f7fc"},"kids_cap":{"t":"ptr","v":"0x0e92f7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e92f808"},"kids_end":{"t":"ptr","v":"0x0e92f810"},"kids_cap":{"t":"ptr","v":"0x0e92f810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e92f808"},"kids_end":{"t":"ptr","v":"0x0e92f810"},"kids_cap":{"t":"ptr","v":"0x0e92f810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e92fa68"},"kids_end":{"t":"ptr","v":"0x0e92fa6c"},"kids_cap":{"t":"ptr","v":"0x0e92fa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e92fa68"},"kids_end":{"t":"ptr","v":"0x0e92fa6c"},"kids_cap":{"t":"ptr","v":"0x0e92fa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe728"},"kids_end":{"t":"ptr","v":"0x0e8fe734"},"kids_cap":{"t":"ptr","v":"0x0e8fe734"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe728"},"kids_end":{"t":"ptr","v":"0x0e8fe734"},"kids_cap":{"t":"ptr","v":"0x0e8fe734"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e92f908"},"kids_end":{"t":"ptr","v":"0x0e92f90c"},"kids_cap":{"t":"ptr","v":"0x0e92f90c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e92f908"},"kids_end":{"t":"ptr","v":"0x0e92f90c"},"kids_cap":{"t":"ptr","v":"0x0e92f90c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d258"},"kids_end":{"t":"ptr","v":"0x0e88d26c"},"kids_cap":{"t":"ptr","v":"0x0e88d26c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d258"},"kids_end":{"t":"ptr","v":"0x0e88d26c"},"kids_cap":{"t":"ptr","v":"0x0e88d26c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e92faa8"},"kids_end":{"t":"ptr","v":"0x0e92faac"},"kids_cap":{"t":"ptr","v":"0x0e92faac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e92faa8"},"kids_end":{"t":"ptr","v":"0x0e92faac"},"kids_cap":{"t":"ptr","v":"0x0e92faac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e92f938"},"kids_end":{"t":"ptr","v":"0x0e92f93c"},"kids_cap":{"t":"ptr","v":"0x0e92f93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e92f938"},"kids_end":{"t":"ptr","v":"0x0e92f93c"},"kids_cap":{"t":"ptr","v":"0x0e92f93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e92f988"},"kids_end":{"t":"ptr","v":"0x0e92f98c"},"kids_cap":{"t":"ptr","v":"0x0e92f98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e92f988"},"kids_end":{"t":"ptr","v":"0x0e92f98c"},"kids_cap":{"t":"ptr","v":"0x0e92f98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e92f9f8"},"kids_end":{"t":"ptr","v":"0x0e92f9fc"},"kids_cap":{"t":"ptr","v":"0x0e92f9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e92f9f8"},"kids_end":{"t":"ptr","v":"0x0e92f9fc"},"kids_cap":{"t":"ptr","v":"0x0e92f9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9309f8"},"kids_end":{"t":"ptr","v":"0x0e9309fc"},"kids_cap":{"t":"ptr","v":"0x0e9309fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9309f8"},"kids_end":{"t":"ptr","v":"0x0e9309fc"},"kids_cap":{"t":"ptr","v":"0x0e9309fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe740"},"kids_end":{"t":"ptr","v":"0x0e8fe750"},"kids_cap":{"t":"ptr","v":"0x0e8fe750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe740"},"kids_end":{"t":"ptr","v":"0x0e8fe750"},"kids_cap":{"t":"ptr","v":"0x0e8fe750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fe638"},"kids_end":{"t":"ptr","v":"0x0e8fe644"},"kids_cap":{"t":"ptr","v":"0x0e8fe644"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fe638"},"kids_end":{"t":"ptr","v":"0x0e8fe644"},"kids_cap":{"t":"ptr","v":"0x0e8fe644"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e930908"},"kids_end":{"t":"ptr","v":"0x0e93090c"},"kids_cap":{"t":"ptr","v":"0x0e93090c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e930908"},"kids_end":{"t":"ptr","v":"0x0e93090c"},"kids_cap":{"t":"ptr","v":"0x0e93090c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9309a8"},"kids_end":{"t":"ptr","v":"0x0e9309ac"},"kids_cap":{"t":"ptr","v":"0x0e9309ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9309a8"},"kids_end":{"t":"ptr","v":"0x0e9309ac"},"kids_cap":{"t":"ptr","v":"0x0e9309ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe7e8"},"kids_end":{"t":"ptr","v":"0x0e8fe7f8"},"kids_cap":{"t":"ptr","v":"0x0e8fe7f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe7e8"},"kids_end":{"t":"ptr","v":"0x0e8fe7f8"},"kids_cap":{"t":"ptr","v":"0x0e8fe7f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9308e8"},"kids_end":{"t":"ptr","v":"0x0e9308f0"},"kids_cap":{"t":"ptr","v":"0x0e9308f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9308e8"},"kids_end":{"t":"ptr","v":"0x0e9308f0"},"kids_cap":{"t":"ptr","v":"0x0e9308f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e930968"},"kids_end":{"t":"ptr","v":"0x0e93096c"},"kids_cap":{"t":"ptr","v":"0x0e93096c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e930968"},"kids_end":{"t":"ptr","v":"0x0e93096c"},"kids_cap":{"t":"ptr","v":"0x0e93096c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e930978"},"kids_end":{"t":"ptr","v":"0x0e93097c"},"kids_cap":{"t":"ptr","v":"0x0e93097c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e930978"},"kids_end":{"t":"ptr","v":"0x0e93097c"},"kids_cap":{"t":"ptr","v":"0x0e93097c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fe758"},"kids_end":{"t":"ptr","v":"0x0e8fe764"},"kids_cap":{"t":"ptr","v":"0x0e8fe764"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fe758"},"kids_end":{"t":"ptr","v":"0x0e8fe764"},"kids_cap":{"t":"ptr","v":"0x0e8fe764"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9308f8"},"kids_end":{"t":"ptr","v":"0x0e930900"},"kids_cap":{"t":"ptr","v":"0x0e930900"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9308f8"},"kids_end":{"t":"ptr","v":"0x0e930900"},"kids_cap":{"t":"ptr","v":"0x0e930900"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d0b8"},"kids_end":{"t":"ptr","v":"0x0e88d0cc"},"kids_cap":{"t":"ptr","v":"0x0e88d0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d0b8"},"kids_end":{"t":"ptr","v":"0x0e88d0cc"},"kids_cap":{"t":"ptr","v":"0x0e88d0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e930918"},"kids_end":{"t":"ptr","v":"0x0e93091c"},"kids_cap":{"t":"ptr","v":"0x0e93091c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e930918"},"kids_end":{"t":"ptr","v":"0x0e93091c"},"kids_cap":{"t":"ptr","v":"0x0e93091c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e930988"},"kids_end":{"t":"ptr","v":"0x0e93098c"},"kids_cap":{"t":"ptr","v":"0x0e93098c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e930988"},"kids_end":{"t":"ptr","v":"0x0e93098c"},"kids_cap":{"t":"ptr","v":"0x0e93098c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9309d8"},"kids_end":{"t":"ptr","v":"0x0e9309dc"},"kids_cap":{"t":"ptr","v":"0x0e9309dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9309d8"},"kids_end":{"t":"ptr","v":"0x0e9309dc"},"kids_cap":{"t":"ptr","v":"0x0e9309dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e930998"},"kids_end":{"t":"ptr","v":"0x0e93099c"},"kids_cap":{"t":"ptr","v":"0x0e93099c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e930998"},"kids_end":{"t":"ptr","v":"0x0e93099c"},"kids_cap":{"t":"ptr","v":"0x0e93099c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9309b8"},"kids_end":{"t":"ptr","v":"0x0e9309bc"},"kids_cap":{"t":"ptr","v":"0x0e9309bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9309b8"},"kids_end":{"t":"ptr","v":"0x0e9309bc"},"kids_cap":{"t":"ptr","v":"0x0e9309bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e92eb48"},"kids_end":{"t":"ptr","v":"0x0e92eb50"},"kids_cap":{"t":"ptr","v":"0x0e92eb50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e92eb48"},"kids_end":{"t":"ptr","v":"0x0e92eb50"},"kids_cap":{"t":"ptr","v":"0x0e92eb50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d1b8"},"kids_end":{"t":"ptr","v":"0x0e88d1cc"},"kids_cap":{"t":"ptr","v":"0x0e88d1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d1b8"},"kids_end":{"t":"ptr","v":"0x0e88d1cc"},"kids_cap":{"t":"ptr","v":"0x0e88d1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e92ecb8"},"kids_end":{"t":"ptr","v":"0x0e92ecbc"},"kids_cap":{"t":"ptr","v":"0x0e92ecbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e92ecb8"},"kids_end":{"t":"ptr","v":"0x0e92ecbc"},"kids_cap":{"t":"ptr","v":"0x0e92ecbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e92eb68"},"kids_end":{"t":"ptr","v":"0x0e92eb6c"},"kids_cap":{"t":"ptr","v":"0x0e92eb6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e92eb68"},"kids_end":{"t":"ptr","v":"0x0e92eb6c"},"kids_cap":{"t":"ptr","v":"0x0e92eb6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e92ebd8"},"kids_end":{"t":"ptr","v":"0x0e92ebdc"},"kids_cap":{"t":"ptr","v":"0x0e92ebdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e92ebd8"},"kids_end":{"t":"ptr","v":"0x0e92ebdc"},"kids_cap":{"t":"ptr","v":"0x0e92ebdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e92eb18"},"kids_end":{"t":"ptr","v":"0x0e92eb20"},"kids_cap":{"t":"ptr","v":"0x0e92eb20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e92eb18"},"kids_end":{"t":"ptr","v":"0x0e92eb20"},"kids_cap":{"t":"ptr","v":"0x0e92eb20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e92eb78"},"kids_end":{"t":"ptr","v":"0x0e92eb80"},"kids_cap":{"t":"ptr","v":"0x0e92eb80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e92eb78"},"kids_end":{"t":"ptr","v":"0x0e92eb80"},"kids_cap":{"t":"ptr","v":"0x0e92eb80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e92ec98"},"kids_end":{"t":"ptr","v":"0x0e92eca0"},"kids_cap":{"t":"ptr","v":"0x0e92eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e92ec98"},"kids_end":{"t":"ptr","v":"0x0e92eca0"},"kids_cap":{"t":"ptr","v":"0x0e92eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e92eb58"},"kids_end":{"t":"ptr","v":"0x0e92eb5c"},"kids_cap":{"t":"ptr","v":"0x0e92eb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e92eb58"},"kids_end":{"t":"ptr","v":"0x0e92eb5c"},"kids_cap":{"t":"ptr","v":"0x0e92eb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e92eca8"},"kids_end":{"t":"ptr","v":"0x0e92ecac"},"kids_cap":{"t":"ptr","v":"0x0e92ecac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e92eca8"},"kids_end":{"t":"ptr","v":"0x0e92ecac"},"kids_cap":{"t":"ptr","v":"0x0e92ecac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe5c0"},"kids_end":{"t":"ptr","v":"0x0e8fe5cc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe5c0"},"kids_end":{"t":"ptr","v":"0x0e8fe5cc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe800"},"kids_end":{"t":"ptr","v":"0x0e8fe80c"},"kids_cap":{"t":"ptr","v":"0x0e8fe80c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe800"},"kids_end":{"t":"ptr","v":"0x0e8fe80c"},"kids_cap":{"t":"ptr","v":"0x0e8fe80c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe770"},"kids_end":{"t":"ptr","v":"0x0e8fe77c"},"kids_cap":{"t":"ptr","v":"0x0e8fe77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe770"},"kids_end":{"t":"ptr","v":"0x0e8fe77c"},"kids_cap":{"t":"ptr","v":"0x0e8fe77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe7a0"},"kids_end":{"t":"ptr","v":"0x0e8fe7ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe7a0"},"kids_end":{"t":"ptr","v":"0x0e8fe7ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe818"},"kids_end":{"t":"ptr","v":"0x0e8fe824"},"kids_cap":{"t":"ptr","v":"0x0e8fe824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe818"},"kids_end":{"t":"ptr","v":"0x0e8fe824"},"kids_cap":{"t":"ptr","v":"0x0e8fe824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d1f8"},"kids_end":{"t":"ptr","v":"0x0e88d210"},"kids_cap":{"t":"ptr","v":"0x0e88d210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d1f8"},"kids_end":{"t":"ptr","v":"0x0e88d210"},"kids_cap":{"t":"ptr","v":"0x0e88d210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e92ec28"},"kids_end":{"t":"ptr","v":"0x0e92ec30"},"kids_cap":{"t":"ptr","v":"0x0e92ec30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e92ec28"},"kids_end":{"t":"ptr","v":"0x0e92ec30"},"kids_cap":{"t":"ptr","v":"0x0e92ec30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e92ec68"},"kids_end":{"t":"ptr","v":"0x0e92ec70"},"kids_cap":{"t":"ptr","v":"0x0e92ec70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e92ec68"},"kids_end":{"t":"ptr","v":"0x0e92ec70"},"kids_cap":{"t":"ptr","v":"0x0e92ec70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e92eba8"},"kids_end":{"t":"ptr","v":"0x0e92ebb0"},"kids_cap":{"t":"ptr","v":"0x0e92ebb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e92eba8"},"kids_end":{"t":"ptr","v":"0x0e92ebb0"},"kids_cap":{"t":"ptr","v":"0x0e92ebb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e92ec18"},"kids_end":{"t":"ptr","v":"0x0e92ec20"},"kids_cap":{"t":"ptr","v":"0x0e92ec20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e92ec18"},"kids_end":{"t":"ptr","v":"0x0e92ec20"},"kids_cap":{"t":"ptr","v":"0x0e92ec20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e92eae8"},"kids_end":{"t":"ptr","v":"0x0e92eaec"},"kids_cap":{"t":"ptr","v":"0x0e92eaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e92eae8"},"kids_end":{"t":"ptr","v":"0x0e92eaec"},"kids_cap":{"t":"ptr","v":"0x0e92eaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e92ec58"},"kids_end":{"t":"ptr","v":"0x0e92ec5c"},"kids_cap":{"t":"ptr","v":"0x0e92ec5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e92ec58"},"kids_end":{"t":"ptr","v":"0x0e92ec5c"},"kids_cap":{"t":"ptr","v":"0x0e92ec5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e92ec08"},"kids_end":{"t":"ptr","v":"0x0e92ec0c"},"kids_cap":{"t":"ptr","v":"0x0e92ec0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e92ec08"},"kids_end":{"t":"ptr","v":"0x0e92ec0c"},"kids_cap":{"t":"ptr","v":"0x0e92ec0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e92ecc8"},"kids_end":{"t":"ptr","v":"0x0e92eccc"},"kids_cap":{"t":"ptr","v":"0x0e92eccc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e92ecc8"},"kids_end":{"t":"ptr","v":"0x0e92eccc"},"kids_cap":{"t":"ptr","v":"0x0e92eccc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e92ecd8"},"kids_end":{"t":"ptr","v":"0x0e92ecdc"},"kids_cap":{"t":"ptr","v":"0x0e92ecdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e92ecd8"},"kids_end":{"t":"ptr","v":"0x0e92ecdc"},"kids_cap":{"t":"ptr","v":"0x0e92ecdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e92eb88"},"kids_end":{"t":"ptr","v":"0x0e92eb8c"},"kids_cap":{"t":"ptr","v":"0x0e92eb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e92eb88"},"kids_end":{"t":"ptr","v":"0x0e92eb8c"},"kids_cap":{"t":"ptr","v":"0x0e92eb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e92ebb8"},"kids_end":{"t":"ptr","v":"0x0e92ebbc"},"kids_cap":{"t":"ptr","v":"0x0e92ebbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e92ebb8"},"kids_end":{"t":"ptr","v":"0x0e92ebbc"},"kids_cap":{"t":"ptr","v":"0x0e92ebbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e92eaf8"},"kids_end":{"t":"ptr","v":"0x0e92eafc"},"kids_cap":{"t":"ptr","v":"0x0e92eafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e92eaf8"},"kids_end":{"t":"ptr","v":"0x0e92eafc"},"kids_cap":{"t":"ptr","v":"0x0e92eafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e92eb98"},"kids_end":{"t":"ptr","v":"0x0e92eb9c"},"kids_cap":{"t":"ptr","v":"0x0e92eb9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e92eb98"},"kids_end":{"t":"ptr","v":"0x0e92eb9c"},"kids_cap":{"t":"ptr","v":"0x0e92eb9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e92ebe8"},"kids_end":{"t":"ptr","v":"0x0e92ebec"},"kids_cap":{"t":"ptr","v":"0x0e92ebec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e92ebe8"},"kids_end":{"t":"ptr","v":"0x0e92ebec"},"kids_cap":{"t":"ptr","v":"0x0e92ebec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e92eb08"},"kids_end":{"t":"ptr","v":"0x0e92eb0c"},"kids_cap":{"t":"ptr","v":"0x0e92eb0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e92eb08"},"kids_end":{"t":"ptr","v":"0x0e92eb0c"},"kids_cap":{"t":"ptr","v":"0x0e92eb0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"before":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}},"ours":{"ret":null,"side":{"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":431},"next_index":{"t":"i64","v":193}}}},"overbudget":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9caf28"},"kids_end":{"t":"ptr","v":"0x0e9caf2c"},"kids_cap":{"t":"ptr","v":"0x0e9caf2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cae68"},"kids_end":{"t":"ptr","v":"0x0e9cae6c"},"kids_cap":{"t":"ptr","v":"0x0e9cae6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cadf8"},"kids_end":{"t":"ptr","v":"0x0e9cadfc"},"kids_cap":{"t":"ptr","v":"0x0e9cadfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9caea8"},"kids_end":{"t":"ptr","v":"0x0e9caeb0"},"kids_cap":{"t":"ptr","v":"0x0e9caeb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9caf38"},"kids_end":{"t":"ptr","v":"0x0e9caf40"},"kids_cap":{"t":"ptr","v":"0x0e9caf40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cad68"},"kids_end":{"t":"ptr","v":"0x0e9cad6c"},"kids_cap":{"t":"ptr","v":"0x0e9cad6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9caeb8"},"kids_end":{"t":"ptr","v":"0x0e9caebc"},"kids_cap":{"t":"ptr","v":"0x0e9caebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9caef8"},"kids_end":{"t":"ptr","v":"0x0e9caefc"},"kids_cap":{"t":"ptr","v":"0x0e9caefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe0e0"},"kids_end":{"t":"ptr","v":"0x0e8fe0ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cad88"},"kids_end":{"t":"ptr","v":"0x0e9cad90"},"kids_cap":{"t":"ptr","v":"0x0e9cad90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe038"},"kids_end":{"t":"ptr","v":"0x0e8fe048"},"kids_cap":{"t":"ptr","v":"0x0e8fe048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cadb8"},"kids_end":{"t":"ptr","v":"0x0e9cadbc"},"kids_cap":{"t":"ptr","v":"0x0e9cadbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cae98"},"kids_end":{"t":"ptr","v":"0x0e9cae9c"},"kids_cap":{"t":"ptr","v":"0x0e9cae9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fdf90"},"kids_end":{"t":"ptr","v":"0x0e8fdf9c"},"kids_cap":{"t":"ptr","v":"0x0e8fdf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9caec8"},"kids_end":{"t":"ptr","v":"0x0e9caecc"},"kids_cap":{"t":"ptr","v":"0x0e9caecc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cae08"},"kids_end":{"t":"ptr","v":"0x0e9cae0c"},"kids_cap":{"t":"ptr","v":"0x0e9cae0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9caed8"},"kids_end":{"t":"ptr","v":"0x0e9caedc"},"kids_cap":{"t":"ptr","v":"0x0e9caedc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fdfd8"},"kids_end":{"t":"ptr","v":"0x0e8fdfe4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe158"},"kids_end":{"t":"ptr","v":"0x0e8fe168"},"kids_cap":{"t":"ptr","v":"0x0e8fe168"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cae18"},"kids_end":{"t":"ptr","v":"0x0e9cae1c"},"kids_cap":{"t":"ptr","v":"0x0e9cae1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cae28"},"kids_end":{"t":"ptr","v":"0x0e9cae2c"},"kids_cap":{"t":"ptr","v":"0x0e9cae2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb068"},"kids_end":{"t":"ptr","v":"0x0e9cb06c"},"kids_cap":{"t":"ptr","v":"0x0e9cb06c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb0d8"},"kids_end":{"t":"ptr","v":"0x0e9cb0dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9caf48"},"kids_end":{"t":"ptr","v":"0x0e9caf50"},"kids_cap":{"t":"ptr","v":"0x0e9caf50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe098"},"kids_end":{"t":"ptr","v":"0x0e8fe0a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb088"},"kids_end":{"t":"ptr","v":"0x0e9cb090"},"kids_cap":{"t":"ptr","v":"0x0e9cb090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fdfa8"},"kids_end":{"t":"ptr","v":"0x0e8fdfb4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe1a0"},"kids_end":{"t":"ptr","v":"0x0e8fe1ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe008"},"kids_end":{"t":"ptr","v":"0x0e8fe014"},"kids_cap":{"t":"ptr","v":"0x0e8fe014"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9caf98"},"kids_end":{"t":"ptr","v":"0x0e9caf9c"},"kids_cap":{"t":"ptr","v":"0x0e9caf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cafd8"},"kids_end":{"t":"ptr","v":"0x0e9cafdc"},"kids_cap":{"t":"ptr","v":"0x0e9cafdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe050"},"kids_end":{"t":"ptr","v":"0x0e8fe05c"},"kids_cap":{"t":"ptr","v":"0x0e8fe05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9caf58"},"kids_end":{"t":"ptr","v":"0x0e9caf5c"},"kids_cap":{"t":"ptr","v":"0x0e9caf5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9cb0e8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb0f8"},"kids_end":{"t":"ptr","v":"0x0e9cb0fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9caf68"},"kids_end":{"t":"ptr","v":"0x0e9caf6c"},"kids_cap":{"t":"ptr","v":"0x0e9caf6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cafc8"},"kids_end":{"t":"ptr","v":"0x0e9cafcc"},"kids_cap":{"t":"ptr","v":"0x0e9cafcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe1d0"},"kids_end":{"t":"ptr","v":"0x0e8fe1dc"},"kids_cap":{"t":"ptr","v":"0x0e8fe1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9caf78"},"kids_end":{"t":"ptr","v":"0x0e9caf7c"},"kids_cap":{"t":"ptr","v":"0x0e9caf7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb118"},"kids_end":{"t":"ptr","v":"0x0e9cb11c"},"kids_cap":{"t":"ptr","v":"0x0e9cb11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb108"},"kids_end":{"t":"ptr","v":"0x0e9cb10c"},"kids_cap":{"t":"ptr","v":"0x0e9cb10c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb0c8"},"kids_end":{"t":"ptr","v":"0x0e9cb0cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb098"},"kids_end":{"t":"ptr","v":"0x0e9cb09c"},"kids_cap":{"t":"ptr","v":"0x0e9cb09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb128"},"kids_end":{"t":"ptr","v":"0x0e9cb12c"},"kids_cap":{"t":"ptr","v":"0x0e9cb12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9caf88"},"kids_end":{"t":"ptr","v":"0x0e9caf8c"},"kids_cap":{"t":"ptr","v":"0x0e9caf8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe1b8"},"kids_end":{"t":"ptr","v":"0x0e8fe1c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fdfc0"},"kids_end":{"t":"ptr","v":"0x0e8fdfcc"},"kids_cap":{"t":"ptr","v":"0x0e8fdfcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb078"},"kids_end":{"t":"ptr","v":"0x0e9cb07c"},"kids_cap":{"t":"ptr","v":"0x0e9cb07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb008"},"kids_end":{"t":"ptr","v":"0x0e9cb010"},"kids_cap":{"t":"ptr","v":"0x0e9cb010"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cafa8"},"kids_end":{"t":"ptr","v":"0x0e9cafb0"},"kids_cap":{"t":"ptr","v":"0x0e9cafb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88d218"},"kids_end":{"t":"ptr","v":"0x0e88d22c"},"kids_cap":{"t":"ptr","v":"0x0e88d22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fdff0"},"kids_end":{"t":"ptr","v":"0x0e8fdffc"},"kids_cap":{"t":"ptr","v":"0x0e8fdffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969f00"},"kids_end":{"t":"ptr","v":"0x0e969f24"},"kids_cap":{"t":"ptr","v":"0x0e969f24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9cafe8"},"kids_end":{"t":"ptr","v":"0x0e9cafec"},"kids_cap":{"t":"ptr","v":"0x0e9cafec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9cafb8"},"kids_end":{"t":"ptr","v":"0x0e9cafbc"},"kids_cap":{"t":"ptr","v":"0x0e9cafbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fe110"},"kids_end":{"t":"ptr","v":"0x0e8fe11c"},"kids_cap":{"t":"ptr","v":"0x0e8fe11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb138"},"kids_end":{"t":"ptr","v":"0x0e9cb13c"},"kids_cap":{"t":"ptr","v":"0x0e9cb13c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9caff8"},"kids_end":{"t":"ptr","v":"0x0e9caffc"},"kids_cap":{"t":"ptr","v":"0x0e9caffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb018"},"kids_end":{"t":"ptr","v":"0x0e9cb01c"},"kids_cap":{"t":"ptr","v":"0x0e9cb01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb0a8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb028"},"kids_end":{"t":"ptr","v":"0x0e9cb02c"},"kids_cap":{"t":"ptr","v":"0x0e9cb02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb038"},"kids_end":{"t":"ptr","v":"0x0e9cb040"},"kids_cap":{"t":"ptr","v":"0x0e9cb040"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb048"},"kids_end":{"t":"ptr","v":"0x0e9cb050"},"kids_cap":{"t":"ptr","v":"0x0e9cb050"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d358"},"kids_end":{"t":"ptr","v":"0x0e88d36c"},"kids_cap":{"t":"ptr","v":"0x0e88d36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe218"},"kids_end":{"t":"ptr","v":"0x0e8fe224"},"kids_cap":{"t":"ptr","v":"0x0e8fe224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb058"},"kids_end":{"t":"ptr","v":"0x0e9cb05c"},"kids_cap":{"t":"ptr","v":"0x0e9cb05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb0b8"},"kids_end":{"t":"ptr","v":"0x0e9cb0bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e92edd8"},"kids_end":{"t":"ptr","v":"0x0e92eddc"},"kids_cap":{"t":"ptr","v":"0x0e92eddc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e92ed78"},"kids_end":{"t":"ptr","v":"0x0e92ed7c"},"kids_cap":{"t":"ptr","v":"0x0e92ed7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e92ede8"},"kids_end":{"t":"ptr","v":"0x0e92edf0"},"kids_cap":{"t":"ptr","v":"0x0e92edf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe020"},"kids_end":{"t":"ptr","v":"0x0e8fe02c"},"kids_cap":{"t":"ptr","v":"0x0e8fe02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e92edb8"},"kids_end":{"t":"ptr","v":"0x0e92edc0"},"kids_cap":{"t":"ptr","v":"0x0e92edc0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e92ee48"},"kids_end":{"t":"ptr","v":"0x0e92ee50"},"kids_cap":{"t":"ptr","v":"0x0e92ee50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e92eeb8"},"kids_end":{"t":"ptr","v":"0x0e92eebc"},"kids_cap":{"t":"ptr","v":"0x0e92eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe0c8"},"kids_end":{"t":"ptr","v":"0x0e8fe0d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fe0f8"},"kids_end":{"t":"ptr","v":"0x0e8fe104"},"kids_cap":{"t":"ptr","v":"0x0e8fe104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe350"},"kids_end":{"t":"ptr","v":"0x0e8fe360"},"kids_cap":{"t":"ptr","v":"0x0e8fe360"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e92eec8"},"kids_end":{"t":"ptr","v":"0x0e92eed0"},"kids_cap":{"t":"ptr","v":"0x0e92eed0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e92ee18"},"kids_end":{"t":"ptr","v":"0x0e92ee1c"},"kids_cap":{"t":"ptr","v":"0x0e92ee1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe380"},"kids_end":{"t":"ptr","v":"0x0e8fe38c"},"kids_cap":{"t":"ptr","v":"0x0e8fe38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e92ee58"},"kids_end":{"t":"ptr","v":"0x0e92ee5c"},"kids_cap":{"t":"ptr","v":"0x0e92ee5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e92edc8"},"kids_end":{"t":"ptr","v":"0x0e92edcc"},"kids_cap":{"t":"ptr","v":"0x0e92edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e92ee28"},"kids_end":{"t":"ptr","v":"0x0e92ee2c"},"kids_cap":{"t":"ptr","v":"0x0e92ee2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e92ece8"},"kids_end":{"t":"ptr","v":"0x0e92ecec"},"kids_cap":{"t":"ptr","v":"0x0e92ecec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe3e0"},"kids_end":{"t":"ptr","v":"0x0e8fe3ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e92ed38"},"kids_end":{"t":"ptr","v":"0x0e92ed3c"},"kids_cap":{"t":"ptr","v":"0x0e92ed3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e92ed58"},"kids_end":{"t":"ptr","v":"0x0e92ed60"},"kids_cap":{"t":"ptr","v":"0x0e92ed60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fe6f8"},"kids_end":{"t":"ptr","v":"0x0e8fe704"},"kids_cap":{"t":"ptr","v":"0x0e8fe704"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e92edf8"},"kids_end":{"t":"ptr","v":"0x0e92edfc"},"kids_cap":{"t":"ptr","v":"0x0e92edfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e92ee38"},"kids_end":{"t":"ptr","v":"0x0e92ee40"},"kids_cap":{"t":"ptr","v":"0x0e92ee40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e92ee08"},"kids_end":{"t":"ptr","v":"0x0e92ee0c"},"kids_cap":{"t":"ptr","v":"0x0e92ee0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e92ee68"},"kids_end":{"t":"ptr","v":"0x0e92ee70"},"kids_cap":{"t":"ptr","v":"0x0e92ee70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e92ee78"},"kids_end":{"t":"ptr","v":"0x0e92ee80"},"kids_cap":{"t":"ptr","v":"0x0e92ee80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e92ed48"},"kids_end":{"t":"ptr","v":"0x0e92ed50"},"kids_cap":{"t":"ptr","v":"0x0e92ed50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e92eed8"},"kids_end":{"t":"ptr","v":"0x0e92eee0"},"kids_cap":{"t":"ptr","v":"0x0e92eee0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e92ed88"},"kids_end":{"t":"ptr","v":"0x0e92ed8c"},"kids_cap":{"t":"ptr","v":"0x0e92ed8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e92ed68"},"kids_end":{"t":"ptr","v":"0x0e92ed6c"},"kids_cap":{"t":"ptr","v":"0x0e92ed6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e92ecf8"},"kids_end":{"t":"ptr","v":"0x0e92ed00"},"kids_cap":{"t":"ptr","v":"0x0e92ed00"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e92ed08"},"kids_end":{"t":"ptr","v":"0x0e92ed10"},"kids_cap":{"t":"ptr","v":"0x0e92ed10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e92ee98"},"kids_end":{"t":"ptr","v":"0x0e92ee9c"},"kids_cap":{"t":"ptr","v":"0x0e92ee9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e92ed18"},"kids_end":{"t":"ptr","v":"0x0e92ed1c"},"kids_cap":{"t":"ptr","v":"0x0e92ed1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e92ee88"},"kids_end":{"t":"ptr","v":"0x0e92ee90"},"kids_cap":{"t":"ptr","v":"0x0e92ee90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e92eea8"},"kids_end":{"t":"ptr","v":"0x0e92eeac"},"kids_cap":{"t":"ptr","v":"0x0e92eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e92ed28"},"kids_end":{"t":"ptr","v":"0x0e92ed2c"},"kids_cap":{"t":"ptr","v":"0x0e92ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e92ed98"},"kids_end":{"t":"ptr","v":"0x0e92eda0"},"kids_cap":{"t":"ptr","v":"0x0e92eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e92eda8"},"kids_end":{"t":"ptr","v":"0x0e92edac"},"kids_cap":{"t":"ptr","v":"0x0e92edac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e92f7a8"},"kids_end":{"t":"ptr","v":"0x0e92f7ac"},"kids_cap":{"t":"ptr","v":"0x0e92f7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fe6c8"},"kids_end":{"t":"ptr","v":"0x0e8fe6d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fe620"},"kids_end":{"t":"ptr","v":"0x0e8fe630"},"kids_cap":{"t":"ptr","v":"0x0e8fe630"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e92f6e8"},"kids_end":{"t":"ptr","v":"0x0e92f6f0"},"kids_cap":{"t":"ptr","v":"0x0e92f6f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e92f7b8"},"kids_end":{"t":"ptr","v":"0x0e92f7c0"},"kids_cap":{"t":"ptr","v":"0x0e92f7c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e92f818"},"kids_end":{"t":"ptr","v":"0x0e92f81c"},"kids_cap":{"t":"ptr","v":"0x0e92f81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e92f6f8"},"kids_end":{"t":"ptr","v":"0x0e92f700"},"kids_cap":{"t":"ptr","v":"0x0e92f700"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e92f7d8"},"kids_end":{"t":"ptr","v":"0x0e92f7e0"},"kids_cap":{"t":"ptr","v":"0x0e92f7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e92f708"},"kids_end":{"t":"ptr","v":"0x0e92f710"},"kids_cap":{"t":"ptr","v":"0x0e92f710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e92f7e8"},"kids_end":{"t":"ptr","v":"0x0e92f7ec"},"kids_cap":{"t":"ptr","v":"0x0e92f7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e92f7f8"},"kids_end":{"t":"ptr","v":"0x0e92f7fc"},"kids_cap":{"t":"ptr","v":"0x0e92f7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e92f808"},"kids_end":{"t":"ptr","v":"0x0e92f810"},"kids_cap":{"t":"ptr","v":"0x0e92f810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e92fa68"},"kids_end":{"t":"ptr","v":"0x0e92fa6c"},"kids_cap":{"t":"ptr","v":"0x0e92fa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe728"},"kids_end":{"t":"ptr","v":"0x0e8fe734"},"kids_cap":{"t":"ptr","v":"0x0e8fe734"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e92f908"},"kids_end":{"t":"ptr","v":"0x0e92f90c"},"kids_cap":{"t":"ptr","v":"0x0e92f90c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d258"},"kids_end":{"t":"ptr","v":"0x0e88d26c"},"kids_cap":{"t":"ptr","v":"0x0e88d26c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e92faa8"},"kids_end":{"t":"ptr","v":"0x0e92faac"},"kids_cap":{"t":"ptr","v":"0x0e92faac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e92f938"},"kids_end":{"t":"ptr","v":"0x0e92f93c"},"kids_cap":{"t":"ptr","v":"0x0e92f93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e92f988"},"kids_end":{"t":"ptr","v":"0x0e92f98c"},"kids_cap":{"t":"ptr","v":"0x0e92f98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e92f9f8"},"kids_end":{"t":"ptr","v":"0x0e92f9fc"},"kids_cap":{"t":"ptr","v":"0x0e92f9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9309f8"},"kids_end":{"t":"ptr","v":"0x0e9309fc"},"kids_cap":{"t":"ptr","v":"0x0e9309fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe740"},"kids_end":{"t":"ptr","v":"0x0e8fe750"},"kids_cap":{"t":"ptr","v":"0x0e8fe750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fe638"},"kids_end":{"t":"ptr","v":"0x0e8fe644"},"kids_cap":{"t":"ptr","v":"0x0e8fe644"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e930908"},"kids_end":{"t":"ptr","v":"0x0e93090c"},"kids_cap":{"t":"ptr","v":"0x0e93090c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9309a8"},"kids_end":{"t":"ptr","v":"0x0e9309ac"},"kids_cap":{"t":"ptr","v":"0x0e9309ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe7e8"},"kids_end":{"t":"ptr","v":"0x0e8fe7f8"},"kids_cap":{"t":"ptr","v":"0x0e8fe7f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9308e8"},"kids_end":{"t":"ptr","v":"0x0e9308f0"},"kids_cap":{"t":"ptr","v":"0x0e9308f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e930968"},"kids_end":{"t":"ptr","v":"0x0e93096c"},"kids_cap":{"t":"ptr","v":"0x0e93096c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e930978"},"kids_end":{"t":"ptr","v":"0x0e93097c"},"kids_cap":{"t":"ptr","v":"0x0e93097c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fe758"},"kids_end":{"t":"ptr","v":"0x0e8fe764"},"kids_cap":{"t":"ptr","v":"0x0e8fe764"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9308f8"},"kids_end":{"t":"ptr","v":"0x0e930900"},"kids_cap":{"t":"ptr","v":"0x0e930900"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d0b8"},"kids_end":{"t":"ptr","v":"0x0e88d0cc"},"kids_cap":{"t":"ptr","v":"0x0e88d0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e930918"},"kids_end":{"t":"ptr","v":"0x0e93091c"},"kids_cap":{"t":"ptr","v":"0x0e93091c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e930988"},"kids_end":{"t":"ptr","v":"0x0e93098c"},"kids_cap":{"t":"ptr","v":"0x0e93098c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9309d8"},"kids_end":{"t":"ptr","v":"0x0e9309dc"},"kids_cap":{"t":"ptr","v":"0x0e9309dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e930998"},"kids_end":{"t":"ptr","v":"0x0e93099c"},"kids_cap":{"t":"ptr","v":"0x0e93099c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9309b8"},"kids_end":{"t":"ptr","v":"0x0e9309bc"},"kids_cap":{"t":"ptr","v":"0x0e9309bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e92eb48"},"kids_end":{"t":"ptr","v":"0x0e92eb50"},"kids_cap":{"t":"ptr","v":"0x0e92eb50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d1b8"},"kids_end":{"t":"ptr","v":"0x0e88d1cc"},"kids_cap":{"t":"ptr","v":"0x0e88d1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e92ecb8"},"kids_end":{"t":"ptr","v":"0x0e92ecbc"},"kids_cap":{"t":"ptr","v":"0x0e92ecbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e92eb68"},"kids_end":{"t":"ptr","v":"0x0e92eb6c"},"kids_cap":{"t":"ptr","v":"0x0e92eb6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e92ebd8"},"kids_end":{"t":"ptr","v":"0x0e92ebdc"},"kids_cap":{"t":"ptr","v":"0x0e92ebdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e92eb18"},"kids_end":{"t":"ptr","v":"0x0e92eb20"},"kids_cap":{"t":"ptr","v":"0x0e92eb20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e92eb78"},"kids_end":{"t":"ptr","v":"0x0e92eb80"},"kids_cap":{"t":"ptr","v":"0x0e92eb80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e92ec98"},"kids_end":{"t":"ptr","v":"0x0e92eca0"},"kids_cap":{"t":"ptr","v":"0x0e92eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e92eb58"},"kids_end":{"t":"ptr","v":"0x0e92eb5c"},"kids_cap":{"t":"ptr","v":"0x0e92eb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e92eca8"},"kids_end":{"t":"ptr","v":"0x0e92ecac"},"kids_cap":{"t":"ptr","v":"0x0e92ecac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe5c0"},"kids_end":{"t":"ptr","v":"0x0e8fe5cc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe800"},"kids_end":{"t":"ptr","v":"0x0e8fe80c"},"kids_cap":{"t":"ptr","v":"0x0e8fe80c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe770"},"kids_end":{"t":"ptr","v":"0x0e8fe77c"},"kids_cap":{"t":"ptr","v":"0x0e8fe77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe7a0"},"kids_end":{"t":"ptr","v":"0x0e8fe7ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe818"},"kids_end":{"t":"ptr","v":"0x0e8fe824"},"kids_cap":{"t":"ptr","v":"0x0e8fe824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d1f8"},"kids_end":{"t":"ptr","v":"0x0e88d210"},"kids_cap":{"t":"ptr","v":"0x0e88d210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e92ec28"},"kids_end":{"t":"ptr","v":"0x0e92ec30"},"kids_cap":{"t":"ptr","v":"0x0e92ec30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e92ec68"},"kids_end":{"t":"ptr","v":"0x0e92ec70"},"kids_cap":{"t":"ptr","v":"0x0e92ec70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e92eba8"},"kids_end":{"t":"ptr","v":"0x0e92ebb0"},"kids_cap":{"t":"ptr","v":"0x0e92ebb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e92ec18"},"kids_end":{"t":"ptr","v":"0x0e92ec20"},"kids_cap":{"t":"ptr","v":"0x0e92ec20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e92eae8"},"kids_end":{"t":"ptr","v":"0x0e92eaec"},"kids_cap":{"t":"ptr","v":"0x0e92eaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e92ec58"},"kids_end":{"t":"ptr","v":"0x0e92ec5c"},"kids_cap":{"t":"ptr","v":"0x0e92ec5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e92ec08"},"kids_end":{"t":"ptr","v":"0x0e92ec0c"},"kids_cap":{"t":"ptr","v":"0x0e92ec0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e92ecc8"},"kids_end":{"t":"ptr","v":"0x0e92eccc"},"kids_cap":{"t":"ptr","v":"0x0e92eccc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e92ecd8"},"kids_end":{"t":"ptr","v":"0x0e92ecdc"},"kids_cap":{"t":"ptr","v":"0x0e92ecdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e92eb88"},"kids_end":{"t":"ptr","v":"0x0e92eb8c"},"kids_cap":{"t":"ptr","v":"0x0e92eb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e92ebb8"},"kids_end":{"t":"ptr","v":"0x0e92ebbc"},"kids_cap":{"t":"ptr","v":"0x0e92ebbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e92eaf8"},"kids_end":{"t":"ptr","v":"0x0e92eafc"},"kids_cap":{"t":"ptr","v":"0x0e92eafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e92eb98"},"kids_end":{"t":"ptr","v":"0x0e92eb9c"},"kids_cap":{"t":"ptr","v":"0x0e92eb9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e92ebe8"},"kids_end":{"t":"ptr","v":"0x0e92ebec"},"kids_cap":{"t":"ptr","v":"0x0e92ebec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e92eb08"},"kids_end":{"t":"ptr","v":"0x0e92eb0c"},"kids_cap":{"t":"ptr","v":"0x0e92eb0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["player","tree_header"],"undeclared":[],"n":0}} +{"ts":381935384,"hook":"Game::TechTree::ProcessResearch","mode":"compare","call_id":3,"thread":1412,"depth":0,"args":[{"t":"ptr","v":"0x0e93b570","n":"tree"},{"t":"ptr","v":"0x0e90bd70","n":"owner"},{"t":"i32","v":2,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e96ad78","n":"rng"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"list","v":[{"t":"struct","v":{"tech_id":{"t":"i32","v":144},"points":{"t":"i32","v":2898}}}],"n":"alloc"},{"t":"i32","v":0,"n":"overbudget_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"overbudget":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":1166}}}},"node[0]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9ca6b8"},"kids_end":{"t":"ptr","v":"0x0e9ca6bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9ca6b8"},"kids_end":{"t":"ptr","v":"0x0e9ca6bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9ca668"},"kids_end":{"t":"ptr","v":"0x0e9ca66c"},"kids_cap":{"t":"ptr","v":"0x0e9ca66c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9ca668"},"kids_end":{"t":"ptr","v":"0x0e9ca66c"},"kids_cap":{"t":"ptr","v":"0x0e9ca66c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe4a0"},"kids_end":{"t":"ptr","v":"0x0e8fe4ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe4a0"},"kids_end":{"t":"ptr","v":"0x0e8fe4ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9ca708"},"kids_end":{"t":"ptr","v":"0x0e9ca70c"},"kids_cap":{"t":"ptr","v":"0x0e9ca70c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9ca708"},"kids_end":{"t":"ptr","v":"0x0e9ca70c"},"kids_cap":{"t":"ptr","v":"0x0e9ca70c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e9ca598"},"kids_end":{"t":"ptr","v":"0x0e9ca5a0"},"kids_cap":{"t":"ptr","v":"0x0e9ca5a0"},"unk10":{"t":"ptr","v":"0x3fc00000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x3f800000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e9ca598"},"kids_end":{"t":"ptr","v":"0x0e9ca5a0"},"kids_cap":{"t":"ptr","v":"0x0e9ca5a0"},"unk10":{"t":"ptr","v":"0x3fc00000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x3f800000"}}}},"node[13]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9ca578"},"kids_end":{"t":"ptr","v":"0x0e9ca57c"},"kids_cap":{"t":"ptr","v":"0x0e9ca57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9ca578"},"kids_end":{"t":"ptr","v":"0x0e9ca57c"},"kids_cap":{"t":"ptr","v":"0x0e9ca57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9ca5d8"},"kids_end":{"t":"ptr","v":"0x0e9ca5dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9ca5d8"},"kids_end":{"t":"ptr","v":"0x0e9ca5dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe4e8"},"kids_end":{"t":"ptr","v":"0x0e8fe4f4"},"kids_cap":{"t":"ptr","v":"0x0e8fe4f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe4e8"},"kids_end":{"t":"ptr","v":"0x0e8fe4f4"},"kids_cap":{"t":"ptr","v":"0x0e8fe4f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe3f8"},"kids_end":{"t":"ptr","v":"0x0e8fe404"},"kids_cap":{"t":"ptr","v":"0x0e8fe404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe3f8"},"kids_end":{"t":"ptr","v":"0x0e8fe404"},"kids_cap":{"t":"ptr","v":"0x0e8fe404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9ca738"},"kids_end":{"t":"ptr","v":"0x0e9ca740"},"kids_cap":{"t":"ptr","v":"0x0e9ca740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9ca738"},"kids_end":{"t":"ptr","v":"0x0e9ca740"},"kids_cap":{"t":"ptr","v":"0x0e9ca740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe410"},"kids_end":{"t":"ptr","v":"0x0e8fe41c"},"kids_cap":{"t":"ptr","v":"0x0e8fe41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe410"},"kids_end":{"t":"ptr","v":"0x0e8fe41c"},"kids_cap":{"t":"ptr","v":"0x0e8fe41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9ca698"},"kids_end":{"t":"ptr","v":"0x0e9ca69c"},"kids_cap":{"t":"ptr","v":"0x0e9ca69c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9ca698"},"kids_end":{"t":"ptr","v":"0x0e9ca69c"},"kids_cap":{"t":"ptr","v":"0x0e9ca69c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e9ca548"},"kids_end":{"t":"ptr","v":"0x0e9ca550"},"kids_cap":{"t":"ptr","v":"0x0e9ca550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e9ca548"},"kids_end":{"t":"ptr","v":"0x0e9ca550"},"kids_cap":{"t":"ptr","v":"0x0e9ca550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe428"},"kids_end":{"t":"ptr","v":"0x0e8fe434"},"kids_cap":{"t":"ptr","v":"0x0e8fe434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe428"},"kids_end":{"t":"ptr","v":"0x0e8fe434"},"kids_cap":{"t":"ptr","v":"0x0e8fe434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe530"},"kids_end":{"t":"ptr","v":"0x0e8fe53c"},"kids_cap":{"t":"ptr","v":"0x0e8fe53c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe530"},"kids_end":{"t":"ptr","v":"0x0e8fe53c"},"kids_cap":{"t":"ptr","v":"0x0e8fe53c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9ca628"},"kids_end":{"t":"ptr","v":"0x0e9ca62c"},"kids_cap":{"t":"ptr","v":"0x0e9ca62c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9ca628"},"kids_end":{"t":"ptr","v":"0x0e9ca62c"},"kids_cap":{"t":"ptr","v":"0x0e9ca62c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe440"},"kids_end":{"t":"ptr","v":"0x0e8fe44c"},"kids_cap":{"t":"ptr","v":"0x0e8fe44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe440"},"kids_end":{"t":"ptr","v":"0x0e8fe44c"},"kids_cap":{"t":"ptr","v":"0x0e8fe44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9ca608"},"kids_end":{"t":"ptr","v":"0x0e9ca60c"},"kids_cap":{"t":"ptr","v":"0x0e9ca60c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9ca608"},"kids_end":{"t":"ptr","v":"0x0e9ca60c"},"kids_cap":{"t":"ptr","v":"0x0e9ca60c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9ca5c8"},"kids_end":{"t":"ptr","v":"0x0e9ca5cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9ca5c8"},"kids_end":{"t":"ptr","v":"0x0e9ca5cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9ca6e8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9ca6e8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9ca558"},"kids_end":{"t":"ptr","v":"0x0e9ca55c"},"kids_cap":{"t":"ptr","v":"0x0e9ca55c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9ca558"},"kids_end":{"t":"ptr","v":"0x0e9ca55c"},"kids_cap":{"t":"ptr","v":"0x0e9ca55c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe458"},"kids_end":{"t":"ptr","v":"0x0e8fe464"},"kids_cap":{"t":"ptr","v":"0x0e8fe464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe458"},"kids_end":{"t":"ptr","v":"0x0e8fe464"},"kids_cap":{"t":"ptr","v":"0x0e8fe464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9ca5a8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9ca5a8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9ca5b8"},"kids_end":{"t":"ptr","v":"0x0e9ca5bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9ca5b8"},"kids_end":{"t":"ptr","v":"0x0e9ca5bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9ca6a8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9ca6a8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9ca5e8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9ca5e8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9ca5f8"},"kids_end":{"t":"ptr","v":"0x0e9ca5fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9ca5f8"},"kids_end":{"t":"ptr","v":"0x0e9ca5fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9ca568"},"kids_end":{"t":"ptr","v":"0x0e9ca56c"},"kids_cap":{"t":"ptr","v":"0x0e9ca56c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9ca568"},"kids_end":{"t":"ptr","v":"0x0e9ca56c"},"kids_cap":{"t":"ptr","v":"0x0e9ca56c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9ca588"},"kids_end":{"t":"ptr","v":"0x0e9ca58c"},"kids_cap":{"t":"ptr","v":"0x0e9ca58c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9ca588"},"kids_end":{"t":"ptr","v":"0x0e9ca58c"},"kids_cap":{"t":"ptr","v":"0x0e9ca58c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe470"},"kids_end":{"t":"ptr","v":"0x0e8fe47c"},"kids_cap":{"t":"ptr","v":"0x0e8fe47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe470"},"kids_end":{"t":"ptr","v":"0x0e8fe47c"},"kids_cap":{"t":"ptr","v":"0x0e8fe47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e9ca688"},"kids_end":{"t":"ptr","v":"0x0e9ca690"},"kids_cap":{"t":"ptr","v":"0x0e9ca690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e9ca688"},"kids_end":{"t":"ptr","v":"0x0e9ca690"},"kids_cap":{"t":"ptr","v":"0x0e9ca690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9ca618"},"kids_end":{"t":"ptr","v":"0x0e9ca61c"},"kids_cap":{"t":"ptr","v":"0x0e9ca61c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9ca618"},"kids_end":{"t":"ptr","v":"0x0e9ca61c"},"kids_cap":{"t":"ptr","v":"0x0e9ca61c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9ca728"},"kids_end":{"t":"ptr","v":"0x0e9ca730"},"kids_cap":{"t":"ptr","v":"0x0e9ca730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9ca728"},"kids_end":{"t":"ptr","v":"0x0e9ca730"},"kids_cap":{"t":"ptr","v":"0x0e9ca730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9ca638"},"kids_end":{"t":"ptr","v":"0x0e9ca63c"},"kids_cap":{"t":"ptr","v":"0x0e9ca63c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9ca638"},"kids_end":{"t":"ptr","v":"0x0e9ca63c"},"kids_cap":{"t":"ptr","v":"0x0e9ca63c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e9ca6c8"},"kids_end":{"t":"ptr","v":"0x0e9ca6cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e9ca6c8"},"kids_end":{"t":"ptr","v":"0x0e9ca6cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fe6e0"},"kids_end":{"t":"ptr","v":"0x0e8fe6ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fe6e0"},"kids_end":{"t":"ptr","v":"0x0e8fe6ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e99b508"},"kids_end":{"t":"ptr","v":"0x0e99b528"},"kids_cap":{"t":"ptr","v":"0x0e99b528"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e99b508"},"kids_end":{"t":"ptr","v":"0x0e99b528"},"kids_cap":{"t":"ptr","v":"0x0e99b528"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9ca648"},"kids_end":{"t":"ptr","v":"0x0e9ca64c"},"kids_cap":{"t":"ptr","v":"0x0e9ca64c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9ca648"},"kids_end":{"t":"ptr","v":"0x0e9ca64c"},"kids_cap":{"t":"ptr","v":"0x0e9ca64c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9ca658"},"kids_end":{"t":"ptr","v":"0x0e9ca65c"},"kids_cap":{"t":"ptr","v":"0x0e9ca65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9ca658"},"kids_end":{"t":"ptr","v":"0x0e9ca65c"},"kids_cap":{"t":"ptr","v":"0x0e9ca65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e9ca718"},"kids_end":{"t":"ptr","v":"0x0e9ca720"},"kids_cap":{"t":"ptr","v":"0x0e9ca720"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e9ca718"},"kids_end":{"t":"ptr","v":"0x0e9ca720"},"kids_cap":{"t":"ptr","v":"0x0e9ca720"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9ca678"},"kids_end":{"t":"ptr","v":"0x0e9ca67c"},"kids_cap":{"t":"ptr","v":"0x0e9ca67c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9ca678"},"kids_end":{"t":"ptr","v":"0x0e9ca67c"},"kids_cap":{"t":"ptr","v":"0x0e9ca67c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9ca6d8"},"kids_end":{"t":"ptr","v":"0x0e9ca6dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9ca6d8"},"kids_end":{"t":"ptr","v":"0x0e9ca6dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9ca6f8"},"kids_end":{"t":"ptr","v":"0x0e9ca6fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9ca6f8"},"kids_end":{"t":"ptr","v":"0x0e9ca6fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9ca878"},"kids_end":{"t":"ptr","v":"0x0e9ca87c"},"kids_cap":{"t":"ptr","v":"0x0e9ca87c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9ca878"},"kids_end":{"t":"ptr","v":"0x0e9ca87c"},"kids_cap":{"t":"ptr","v":"0x0e9ca87c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9ca768"},"kids_end":{"t":"ptr","v":"0x0e9ca770"},"kids_cap":{"t":"ptr","v":"0x0e9ca770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9ca768"},"kids_end":{"t":"ptr","v":"0x0e9ca770"},"kids_cap":{"t":"ptr","v":"0x0e9ca770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9ca858"},"kids_end":{"t":"ptr","v":"0x0e9ca85c"},"kids_cap":{"t":"ptr","v":"0x0e9ca85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9ca858"},"kids_end":{"t":"ptr","v":"0x0e9ca85c"},"kids_cap":{"t":"ptr","v":"0x0e9ca85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88ce78"},"kids_end":{"t":"ptr","v":"0x0e88ce8c"},"kids_cap":{"t":"ptr","v":"0x0e88ce8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88ce78"},"kids_end":{"t":"ptr","v":"0x0e88ce8c"},"kids_cap":{"t":"ptr","v":"0x0e88ce8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe650"},"kids_end":{"t":"ptr","v":"0x0e8fe65c"},"kids_cap":{"t":"ptr","v":"0x0e8fe65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe650"},"kids_end":{"t":"ptr","v":"0x0e8fe65c"},"kids_cap":{"t":"ptr","v":"0x0e8fe65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9ca828"},"kids_end":{"t":"ptr","v":"0x0e9ca82c"},"kids_cap":{"t":"ptr","v":"0x0e9ca82c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9ca828"},"kids_end":{"t":"ptr","v":"0x0e9ca82c"},"kids_cap":{"t":"ptr","v":"0x0e9ca82c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9ca868"},"kids_end":{"t":"ptr","v":"0x0e9ca86c"},"kids_cap":{"t":"ptr","v":"0x0e9ca86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9ca868"},"kids_end":{"t":"ptr","v":"0x0e9ca86c"},"kids_cap":{"t":"ptr","v":"0x0e9ca86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9ca8b8"},"kids_end":{"t":"ptr","v":"0x0e9ca8bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9ca8b8"},"kids_end":{"t":"ptr","v":"0x0e9ca8bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9ca788"},"kids_end":{"t":"ptr","v":"0x0e9ca78c"},"kids_cap":{"t":"ptr","v":"0x0e9ca78c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9ca788"},"kids_end":{"t":"ptr","v":"0x0e9ca78c"},"kids_cap":{"t":"ptr","v":"0x0e9ca78c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe668"},"kids_end":{"t":"ptr","v":"0x0e8fe674"},"kids_cap":{"t":"ptr","v":"0x0e8fe674"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe668"},"kids_end":{"t":"ptr","v":"0x0e8fe674"},"kids_cap":{"t":"ptr","v":"0x0e8fe674"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9ca798"},"kids_end":{"t":"ptr","v":"0x0e9ca79c"},"kids_cap":{"t":"ptr","v":"0x0e9ca79c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9ca798"},"kids_end":{"t":"ptr","v":"0x0e9ca79c"},"kids_cap":{"t":"ptr","v":"0x0e9ca79c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe710"},"kids_end":{"t":"ptr","v":"0x0e8fe71c"},"kids_cap":{"t":"ptr","v":"0x0e8fe71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe710"},"kids_end":{"t":"ptr","v":"0x0e8fe71c"},"kids_cap":{"t":"ptr","v":"0x0e8fe71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e9ca8d8"},"kids_end":{"t":"ptr","v":"0x0e9ca8e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e9ca8d8"},"kids_end":{"t":"ptr","v":"0x0e9ca8e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe680"},"kids_end":{"t":"ptr","v":"0x0e8fe690"},"kids_cap":{"t":"ptr","v":"0x0e8fe690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe680"},"kids_end":{"t":"ptr","v":"0x0e8fe690"},"kids_cap":{"t":"ptr","v":"0x0e8fe690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9ca758"},"kids_end":{"t":"ptr","v":"0x0e9ca760"},"kids_cap":{"t":"ptr","v":"0x0e9ca760"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9ca758"},"kids_end":{"t":"ptr","v":"0x0e9ca760"},"kids_cap":{"t":"ptr","v":"0x0e9ca760"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9ca928"},"kids_end":{"t":"ptr","v":"0x0e9ca92c"},"kids_cap":{"t":"ptr","v":"0x0e9ca92c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9ca928"},"kids_end":{"t":"ptr","v":"0x0e9ca92c"},"kids_cap":{"t":"ptr","v":"0x0e9ca92c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe7b8"},"kids_end":{"t":"ptr","v":"0x0e8fe7c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe7c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe7b8"},"kids_end":{"t":"ptr","v":"0x0e8fe7c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe7c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9ca778"},"kids_end":{"t":"ptr","v":"0x0e9ca77c"},"kids_cap":{"t":"ptr","v":"0x0e9ca77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9ca778"},"kids_end":{"t":"ptr","v":"0x0e9ca77c"},"kids_cap":{"t":"ptr","v":"0x0e9ca77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9ca7a8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9ca7a8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e9ca7b8"},"kids_end":{"t":"ptr","v":"0x0e9ca7bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e9ca7b8"},"kids_end":{"t":"ptr","v":"0x0e9ca7bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe698"},"kids_end":{"t":"ptr","v":"0x0e8fe6a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":5768},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":2},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe698"},"kids_end":{"t":"ptr","v":"0x0e8fe6a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":7500},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":4},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":2},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9ca7c8"},"kids_end":{"t":"ptr","v":"0x0e9ca7cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9ca7c8"},"kids_end":{"t":"ptr","v":"0x0e9ca7cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9ca918"},"kids_end":{"t":"ptr","v":"0x0e9ca91c"},"kids_cap":{"t":"ptr","v":"0x0e9ca91c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9ca918"},"kids_end":{"t":"ptr","v":"0x0e9ca91c"},"kids_cap":{"t":"ptr","v":"0x0e9ca91c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e9ca838"},"kids_end":{"t":"ptr","v":"0x0e9ca83c"},"kids_cap":{"t":"ptr","v":"0x0e9ca83c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e9ca838"},"kids_end":{"t":"ptr","v":"0x0e9ca83c"},"kids_cap":{"t":"ptr","v":"0x0e9ca83c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9ca748"},"kids_end":{"t":"ptr","v":"0x0e9ca750"},"kids_cap":{"t":"ptr","v":"0x0e9ca750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9ca748"},"kids_end":{"t":"ptr","v":"0x0e9ca750"},"kids_cap":{"t":"ptr","v":"0x0e9ca750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9ca8a8"},"kids_end":{"t":"ptr","v":"0x0e9ca8b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9ca8a8"},"kids_end":{"t":"ptr","v":"0x0e9ca8b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9ca938"},"kids_end":{"t":"ptr","v":"0x0e9ca93c"},"kids_cap":{"t":"ptr","v":"0x0e9ca93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9ca938"},"kids_end":{"t":"ptr","v":"0x0e9ca93c"},"kids_cap":{"t":"ptr","v":"0x0e9ca93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9ca848"},"kids_end":{"t":"ptr","v":"0x0e9ca84c"},"kids_cap":{"t":"ptr","v":"0x0e9ca84c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9ca848"},"kids_end":{"t":"ptr","v":"0x0e9ca84c"},"kids_cap":{"t":"ptr","v":"0x0e9ca84c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9ca888"},"kids_end":{"t":"ptr","v":"0x0e9ca88c"},"kids_cap":{"t":"ptr","v":"0x0e9ca88c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9ca888"},"kids_end":{"t":"ptr","v":"0x0e9ca88c"},"kids_cap":{"t":"ptr","v":"0x0e9ca88c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9ca8c8"},"kids_end":{"t":"ptr","v":"0x0e9ca8cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9ca8c8"},"kids_end":{"t":"ptr","v":"0x0e9ca8cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9ca898"},"kids_end":{"t":"ptr","v":"0x0e9ca89c"},"kids_cap":{"t":"ptr","v":"0x0e9ca89c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9ca898"},"kids_end":{"t":"ptr","v":"0x0e9ca89c"},"kids_cap":{"t":"ptr","v":"0x0e9ca89c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9ca8e8"},"kids_end":{"t":"ptr","v":"0x0e9ca8ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca8ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9ca8e8"},"kids_end":{"t":"ptr","v":"0x0e9ca8ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca8ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9ca7e8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9ca7e8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9ca8f8"},"kids_end":{"t":"ptr","v":"0x0e9ca8fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9ca8f8"},"kids_end":{"t":"ptr","v":"0x0e9ca8fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e9ca818"},"kids_end":{"t":"ptr","v":"0x0e9ca81c"},"kids_cap":{"t":"ptr","v":"0x0e9ca81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e9ca818"},"kids_end":{"t":"ptr","v":"0x0e9ca81c"},"kids_cap":{"t":"ptr","v":"0x0e9ca81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e9ca7d8"},"kids_end":{"t":"ptr","v":"0x0e9ca7e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e9ca7d8"},"kids_end":{"t":"ptr","v":"0x0e9ca7e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9ca908"},"kids_end":{"t":"ptr","v":"0x0e9ca910"},"kids_cap":{"t":"ptr","v":"0x0e9ca910"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9ca908"},"kids_end":{"t":"ptr","v":"0x0e9ca910"},"kids_cap":{"t":"ptr","v":"0x0e9ca910"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9ca7f8"},"kids_end":{"t":"ptr","v":"0x0e9ca7fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9ca7f8"},"kids_end":{"t":"ptr","v":"0x0e9ca7fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9ca808"},"kids_end":{"t":"ptr","v":"0x0e9ca810"},"kids_cap":{"t":"ptr","v":"0x0e9ca810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9ca808"},"kids_end":{"t":"ptr","v":"0x0e9ca810"},"kids_cap":{"t":"ptr","v":"0x0e9ca810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9ca9a8"},"kids_end":{"t":"ptr","v":"0x0e9ca9b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9ca9a8"},"kids_end":{"t":"ptr","v":"0x0e9ca9b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9ca9b8"},"kids_end":{"t":"ptr","v":"0x0e9ca9bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9ca9b8"},"kids_end":{"t":"ptr","v":"0x0e9ca9bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe788"},"kids_end":{"t":"ptr","v":"0x0e8fe794"},"kids_cap":{"t":"ptr","v":"0x0e8fe794"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe788"},"kids_end":{"t":"ptr","v":"0x0e8fe794"},"kids_cap":{"t":"ptr","v":"0x0e8fe794"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9caae8"},"kids_end":{"t":"ptr","v":"0x0e9caaec"},"kids_cap":{"t":"ptr","v":"0x0e9caaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9caae8"},"kids_end":{"t":"ptr","v":"0x0e9caaec"},"kids_cap":{"t":"ptr","v":"0x0e9caaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e9caaa8"},"kids_end":{"t":"ptr","v":"0x0e9caab0"},"kids_cap":{"t":"ptr","v":"0x0e9caab0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e9caaa8"},"kids_end":{"t":"ptr","v":"0x0e9caab0"},"kids_cap":{"t":"ptr","v":"0x0e9caab0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9caa38"},"kids_end":{"t":"ptr","v":"0x0e9caa3c"},"kids_cap":{"t":"ptr","v":"0x0e9caa3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9caa38"},"kids_end":{"t":"ptr","v":"0x0e9caa3c"},"kids_cap":{"t":"ptr","v":"0x0e9caa3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9caac8"},"kids_end":{"t":"ptr","v":"0x0e9caacc"},"kids_cap":{"t":"ptr","v":"0x0e9caacc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9caac8"},"kids_end":{"t":"ptr","v":"0x0e9caacc"},"kids_cap":{"t":"ptr","v":"0x0e9caacc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe860"},"kids_end":{"t":"ptr","v":"0x0e8fe870"},"kids_cap":{"t":"ptr","v":"0x0e8fe870"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe860"},"kids_end":{"t":"ptr","v":"0x0e8fe870"},"kids_cap":{"t":"ptr","v":"0x0e8fe870"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e9caa98"},"kids_end":{"t":"ptr","v":"0x0e9caaa0"},"kids_cap":{"t":"ptr","v":"0x0e9caaa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e9caa98"},"kids_end":{"t":"ptr","v":"0x0e9caaa0"},"kids_cap":{"t":"ptr","v":"0x0e9caaa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9ca988"},"kids_end":{"t":"ptr","v":"0x0e9ca98c"},"kids_cap":{"t":"ptr","v":"0x0e9ca98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9ca988"},"kids_end":{"t":"ptr","v":"0x0e9ca98c"},"kids_cap":{"t":"ptr","v":"0x0e9ca98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe878"},"kids_end":{"t":"ptr","v":"0x0e8fe888"},"kids_cap":{"t":"ptr","v":"0x0e8fe888"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe878"},"kids_end":{"t":"ptr","v":"0x0e8fe888"},"kids_cap":{"t":"ptr","v":"0x0e8fe888"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9cab28"},"kids_end":{"t":"ptr","v":"0x0e9cab30"},"kids_cap":{"t":"ptr","v":"0x0e9cab30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9cab28"},"kids_end":{"t":"ptr","v":"0x0e9cab30"},"kids_cap":{"t":"ptr","v":"0x0e9cab30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9caaf8"},"kids_end":{"t":"ptr","v":"0x0e9caafc"},"kids_cap":{"t":"ptr","v":"0x0e9caafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9caaf8"},"kids_end":{"t":"ptr","v":"0x0e9caafc"},"kids_cap":{"t":"ptr","v":"0x0e9caafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e9cab38"},"kids_end":{"t":"ptr","v":"0x0e9cab3c"},"kids_cap":{"t":"ptr","v":"0x0e9cab3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e9cab38"},"kids_end":{"t":"ptr","v":"0x0e9cab3c"},"kids_cap":{"t":"ptr","v":"0x0e9cab3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e9cab08"},"kids_end":{"t":"ptr","v":"0x0e9cab10"},"kids_cap":{"t":"ptr","v":"0x0e9cab10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e9cab08"},"kids_end":{"t":"ptr","v":"0x0e9cab10"},"kids_cap":{"t":"ptr","v":"0x0e9cab10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9caa08"},"kids_end":{"t":"ptr","v":"0x0e9caa0c"},"kids_cap":{"t":"ptr","v":"0x0e9caa0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9caa08"},"kids_end":{"t":"ptr","v":"0x0e9caa0c"},"kids_cap":{"t":"ptr","v":"0x0e9caa0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9ca9c8"},"kids_end":{"t":"ptr","v":"0x0e9ca9d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9ca9c8"},"kids_end":{"t":"ptr","v":"0x0e9ca9d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e8fe7d0"},"kids_end":{"t":"ptr","v":"0x0e8fe7e0"},"kids_cap":{"t":"ptr","v":"0x0e8fe7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e8fe7d0"},"kids_end":{"t":"ptr","v":"0x0e8fe7e0"},"kids_cap":{"t":"ptr","v":"0x0e8fe7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9ca9d8"},"kids_end":{"t":"ptr","v":"0x0e9ca9dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9ca9d8"},"kids_end":{"t":"ptr","v":"0x0e9ca9dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9caa58"},"kids_end":{"t":"ptr","v":"0x0e9caa5c"},"kids_cap":{"t":"ptr","v":"0x0e9caa5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9caa58"},"kids_end":{"t":"ptr","v":"0x0e9caa5c"},"kids_cap":{"t":"ptr","v":"0x0e9caa5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9caa48"},"kids_end":{"t":"ptr","v":"0x0e9caa50"},"kids_cap":{"t":"ptr","v":"0x0e9caa50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9caa48"},"kids_end":{"t":"ptr","v":"0x0e9caa50"},"kids_cap":{"t":"ptr","v":"0x0e9caa50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9caa68"},"kids_end":{"t":"ptr","v":"0x0e9caa6c"},"kids_cap":{"t":"ptr","v":"0x0e9caa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9caa68"},"kids_end":{"t":"ptr","v":"0x0e9caa6c"},"kids_cap":{"t":"ptr","v":"0x0e9caa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9ca9e8"},"kids_end":{"t":"ptr","v":"0x0e9ca9ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca9ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9ca9e8"},"kids_end":{"t":"ptr","v":"0x0e9ca9ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca9ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe590"},"kids_end":{"t":"ptr","v":"0x0e8fe59c"},"kids_cap":{"t":"ptr","v":"0x0e8fe59c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe590"},"kids_end":{"t":"ptr","v":"0x0e8fe59c"},"kids_cap":{"t":"ptr","v":"0x0e8fe59c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe5f0"},"kids_end":{"t":"ptr","v":"0x0e8fe5fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe5f0"},"kids_end":{"t":"ptr","v":"0x0e8fe5fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe6b0"},"kids_end":{"t":"ptr","v":"0x0e8fe6bc"},"kids_cap":{"t":"ptr","v":"0x0e8fe6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe6b0"},"kids_end":{"t":"ptr","v":"0x0e8fe6bc"},"kids_cap":{"t":"ptr","v":"0x0e8fe6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe608"},"kids_end":{"t":"ptr","v":"0x0e8fe614"},"kids_cap":{"t":"ptr","v":"0x0e8fe614"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe608"},"kids_end":{"t":"ptr","v":"0x0e8fe614"},"kids_cap":{"t":"ptr","v":"0x0e8fe614"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe5a8"},"kids_end":{"t":"ptr","v":"0x0e8fe5b4"},"kids_cap":{"t":"ptr","v":"0x0e8fe5b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe5a8"},"kids_end":{"t":"ptr","v":"0x0e8fe5b4"},"kids_cap":{"t":"ptr","v":"0x0e8fe5b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88cdd8"},"kids_end":{"t":"ptr","v":"0x0e88cdf0"},"kids_cap":{"t":"ptr","v":"0x0e88cdf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88cdd8"},"kids_end":{"t":"ptr","v":"0x0e88cdf0"},"kids_cap":{"t":"ptr","v":"0x0e88cdf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e9caab8"},"kids_end":{"t":"ptr","v":"0x0e9caac0"},"kids_cap":{"t":"ptr","v":"0x0e9caac0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e9caab8"},"kids_end":{"t":"ptr","v":"0x0e9caac0"},"kids_cap":{"t":"ptr","v":"0x0e9caac0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9cab18"},"kids_end":{"t":"ptr","v":"0x0e9cab20"},"kids_cap":{"t":"ptr","v":"0x0e9cab20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9cab18"},"kids_end":{"t":"ptr","v":"0x0e9cab20"},"kids_cap":{"t":"ptr","v":"0x0e9cab20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9caad8"},"kids_end":{"t":"ptr","v":"0x0e9caae0"},"kids_cap":{"t":"ptr","v":"0x0e9caae0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9caad8"},"kids_end":{"t":"ptr","v":"0x0e9caae0"},"kids_cap":{"t":"ptr","v":"0x0e9caae0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9ca958"},"kids_end":{"t":"ptr","v":"0x0e9ca960"},"kids_cap":{"t":"ptr","v":"0x0e9ca960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9ca958"},"kids_end":{"t":"ptr","v":"0x0e9ca960"},"kids_cap":{"t":"ptr","v":"0x0e9ca960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9caa78"},"kids_end":{"t":"ptr","v":"0x0e9caa7c"},"kids_cap":{"t":"ptr","v":"0x0e9caa7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9caa78"},"kids_end":{"t":"ptr","v":"0x0e9caa7c"},"kids_cap":{"t":"ptr","v":"0x0e9caa7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9caa88"},"kids_end":{"t":"ptr","v":"0x0e9caa8c"},"kids_cap":{"t":"ptr","v":"0x0e9caa8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9caa88"},"kids_end":{"t":"ptr","v":"0x0e9caa8c"},"kids_cap":{"t":"ptr","v":"0x0e9caa8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca998"},"kids_end":{"t":"ptr","v":"0x0e9ca99c"},"kids_cap":{"t":"ptr","v":"0x0e9ca99c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca998"},"kids_end":{"t":"ptr","v":"0x0e9ca99c"},"kids_cap":{"t":"ptr","v":"0x0e9ca99c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9ca948"},"kids_end":{"t":"ptr","v":"0x0e9ca94c"},"kids_cap":{"t":"ptr","v":"0x0e9ca94c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9ca948"},"kids_end":{"t":"ptr","v":"0x0e9ca94c"},"kids_cap":{"t":"ptr","v":"0x0e9ca94c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca968"},"kids_end":{"t":"ptr","v":"0x0e9ca96c"},"kids_cap":{"t":"ptr","v":"0x0e9ca96c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca968"},"kids_end":{"t":"ptr","v":"0x0e9ca96c"},"kids_cap":{"t":"ptr","v":"0x0e9ca96c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca9f8"},"kids_end":{"t":"ptr","v":"0x0e9ca9fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca9f8"},"kids_end":{"t":"ptr","v":"0x0e9ca9fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca978"},"kids_end":{"t":"ptr","v":"0x0e9ca97c"},"kids_cap":{"t":"ptr","v":"0x0e9ca97c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca978"},"kids_end":{"t":"ptr","v":"0x0e9ca97c"},"kids_cap":{"t":"ptr","v":"0x0e9ca97c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9caa18"},"kids_end":{"t":"ptr","v":"0x0e9caa1c"},"kids_cap":{"t":"ptr","v":"0x0e9caa1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9caa18"},"kids_end":{"t":"ptr","v":"0x0e9caa1c"},"kids_cap":{"t":"ptr","v":"0x0e9caa1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9caa28"},"kids_end":{"t":"ptr","v":"0x0e9caa2c"},"kids_cap":{"t":"ptr","v":"0x0e9caa2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9caa28"},"kids_end":{"t":"ptr","v":"0x0e9caa2c"},"kids_cap":{"t":"ptr","v":"0x0e9caa2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9cacd8"},"kids_end":{"t":"ptr","v":"0x0e9cacdc"},"kids_cap":{"t":"ptr","v":"0x0e9cacdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9cacd8"},"kids_end":{"t":"ptr","v":"0x0e9cacdc"},"kids_cap":{"t":"ptr","v":"0x0e9cacdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9caca8"},"kids_end":{"t":"ptr","v":"0x0e9cacac"},"kids_cap":{"t":"ptr","v":"0x0e9cacac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9caca8"},"kids_end":{"t":"ptr","v":"0x0e9cacac"},"kids_cap":{"t":"ptr","v":"0x0e9cacac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"before":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":72},"next_id":{"t":"i32","v":5},"vec_begin":{"t":"ptr","v":"0x35ee4918"},"vec_end":{"t":"ptr","v":"0x35ee4960"},"vec_cap":{"t":"ptr","v":"0x35ee4960"}}},"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":72},"next_id":{"t":"i32","v":7},"vec_begin":{"t":"ptr","v":"0x35ee4918"},"vec_end":{"t":"ptr","v":"0x35ee4960"},"vec_cap":{"t":"ptr","v":"0x35ee4960"}}}}},"ours":{"ret":null,"side":{"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"overbudget":{"after":{"t":"struct","v":{"v":{"t":"i32","v":1166}}}},"node[0]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9ca6b8"},"kids_end":{"t":"ptr","v":"0x0e9ca6bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9ca668"},"kids_end":{"t":"ptr","v":"0x0e9ca66c"},"kids_cap":{"t":"ptr","v":"0x0e9ca66c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe4a0"},"kids_end":{"t":"ptr","v":"0x0e8fe4ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9ca708"},"kids_end":{"t":"ptr","v":"0x0e9ca70c"},"kids_cap":{"t":"ptr","v":"0x0e9ca70c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e9ca598"},"kids_end":{"t":"ptr","v":"0x0e9ca5a0"},"kids_cap":{"t":"ptr","v":"0x0e9ca5a0"},"unk10":{"t":"ptr","v":"0x3fc00000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x3f800000"}}}},"node[13]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9ca578"},"kids_end":{"t":"ptr","v":"0x0e9ca57c"},"kids_cap":{"t":"ptr","v":"0x0e9ca57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9ca5d8"},"kids_end":{"t":"ptr","v":"0x0e9ca5dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe4e8"},"kids_end":{"t":"ptr","v":"0x0e8fe4f4"},"kids_cap":{"t":"ptr","v":"0x0e8fe4f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe3f8"},"kids_end":{"t":"ptr","v":"0x0e8fe404"},"kids_cap":{"t":"ptr","v":"0x0e8fe404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9ca738"},"kids_end":{"t":"ptr","v":"0x0e9ca740"},"kids_cap":{"t":"ptr","v":"0x0e9ca740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe410"},"kids_end":{"t":"ptr","v":"0x0e8fe41c"},"kids_cap":{"t":"ptr","v":"0x0e8fe41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9ca698"},"kids_end":{"t":"ptr","v":"0x0e9ca69c"},"kids_cap":{"t":"ptr","v":"0x0e9ca69c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e9ca548"},"kids_end":{"t":"ptr","v":"0x0e9ca550"},"kids_cap":{"t":"ptr","v":"0x0e9ca550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe428"},"kids_end":{"t":"ptr","v":"0x0e8fe434"},"kids_cap":{"t":"ptr","v":"0x0e8fe434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe530"},"kids_end":{"t":"ptr","v":"0x0e8fe53c"},"kids_cap":{"t":"ptr","v":"0x0e8fe53c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9ca628"},"kids_end":{"t":"ptr","v":"0x0e9ca62c"},"kids_cap":{"t":"ptr","v":"0x0e9ca62c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe440"},"kids_end":{"t":"ptr","v":"0x0e8fe44c"},"kids_cap":{"t":"ptr","v":"0x0e8fe44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9ca608"},"kids_end":{"t":"ptr","v":"0x0e9ca60c"},"kids_cap":{"t":"ptr","v":"0x0e9ca60c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9ca5c8"},"kids_end":{"t":"ptr","v":"0x0e9ca5cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9ca6e8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9ca558"},"kids_end":{"t":"ptr","v":"0x0e9ca55c"},"kids_cap":{"t":"ptr","v":"0x0e9ca55c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe458"},"kids_end":{"t":"ptr","v":"0x0e8fe464"},"kids_cap":{"t":"ptr","v":"0x0e8fe464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9ca5a8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9ca5b8"},"kids_end":{"t":"ptr","v":"0x0e9ca5bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9ca6a8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9ca5e8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9ca5f8"},"kids_end":{"t":"ptr","v":"0x0e9ca5fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9ca568"},"kids_end":{"t":"ptr","v":"0x0e9ca56c"},"kids_cap":{"t":"ptr","v":"0x0e9ca56c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9ca588"},"kids_end":{"t":"ptr","v":"0x0e9ca58c"},"kids_cap":{"t":"ptr","v":"0x0e9ca58c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe470"},"kids_end":{"t":"ptr","v":"0x0e8fe47c"},"kids_cap":{"t":"ptr","v":"0x0e8fe47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e9ca688"},"kids_end":{"t":"ptr","v":"0x0e9ca690"},"kids_cap":{"t":"ptr","v":"0x0e9ca690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9ca618"},"kids_end":{"t":"ptr","v":"0x0e9ca61c"},"kids_cap":{"t":"ptr","v":"0x0e9ca61c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9ca728"},"kids_end":{"t":"ptr","v":"0x0e9ca730"},"kids_cap":{"t":"ptr","v":"0x0e9ca730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9ca638"},"kids_end":{"t":"ptr","v":"0x0e9ca63c"},"kids_cap":{"t":"ptr","v":"0x0e9ca63c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e9ca6c8"},"kids_end":{"t":"ptr","v":"0x0e9ca6cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fe6e0"},"kids_end":{"t":"ptr","v":"0x0e8fe6ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e99b508"},"kids_end":{"t":"ptr","v":"0x0e99b528"},"kids_cap":{"t":"ptr","v":"0x0e99b528"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9ca648"},"kids_end":{"t":"ptr","v":"0x0e9ca64c"},"kids_cap":{"t":"ptr","v":"0x0e9ca64c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9ca658"},"kids_end":{"t":"ptr","v":"0x0e9ca65c"},"kids_cap":{"t":"ptr","v":"0x0e9ca65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e9ca718"},"kids_end":{"t":"ptr","v":"0x0e9ca720"},"kids_cap":{"t":"ptr","v":"0x0e9ca720"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9ca678"},"kids_end":{"t":"ptr","v":"0x0e9ca67c"},"kids_cap":{"t":"ptr","v":"0x0e9ca67c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9ca6d8"},"kids_end":{"t":"ptr","v":"0x0e9ca6dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9ca6f8"},"kids_end":{"t":"ptr","v":"0x0e9ca6fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9ca878"},"kids_end":{"t":"ptr","v":"0x0e9ca87c"},"kids_cap":{"t":"ptr","v":"0x0e9ca87c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9ca768"},"kids_end":{"t":"ptr","v":"0x0e9ca770"},"kids_cap":{"t":"ptr","v":"0x0e9ca770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9ca858"},"kids_end":{"t":"ptr","v":"0x0e9ca85c"},"kids_cap":{"t":"ptr","v":"0x0e9ca85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88ce78"},"kids_end":{"t":"ptr","v":"0x0e88ce8c"},"kids_cap":{"t":"ptr","v":"0x0e88ce8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe650"},"kids_end":{"t":"ptr","v":"0x0e8fe65c"},"kids_cap":{"t":"ptr","v":"0x0e8fe65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9ca828"},"kids_end":{"t":"ptr","v":"0x0e9ca82c"},"kids_cap":{"t":"ptr","v":"0x0e9ca82c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9ca868"},"kids_end":{"t":"ptr","v":"0x0e9ca86c"},"kids_cap":{"t":"ptr","v":"0x0e9ca86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9ca8b8"},"kids_end":{"t":"ptr","v":"0x0e9ca8bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9ca788"},"kids_end":{"t":"ptr","v":"0x0e9ca78c"},"kids_cap":{"t":"ptr","v":"0x0e9ca78c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe668"},"kids_end":{"t":"ptr","v":"0x0e8fe674"},"kids_cap":{"t":"ptr","v":"0x0e8fe674"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9ca798"},"kids_end":{"t":"ptr","v":"0x0e9ca79c"},"kids_cap":{"t":"ptr","v":"0x0e9ca79c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe710"},"kids_end":{"t":"ptr","v":"0x0e8fe71c"},"kids_cap":{"t":"ptr","v":"0x0e8fe71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e9ca8d8"},"kids_end":{"t":"ptr","v":"0x0e9ca8e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe680"},"kids_end":{"t":"ptr","v":"0x0e8fe690"},"kids_cap":{"t":"ptr","v":"0x0e8fe690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9ca758"},"kids_end":{"t":"ptr","v":"0x0e9ca760"},"kids_cap":{"t":"ptr","v":"0x0e9ca760"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9ca928"},"kids_end":{"t":"ptr","v":"0x0e9ca92c"},"kids_cap":{"t":"ptr","v":"0x0e9ca92c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe7b8"},"kids_end":{"t":"ptr","v":"0x0e8fe7c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe7c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9ca778"},"kids_end":{"t":"ptr","v":"0x0e9ca77c"},"kids_cap":{"t":"ptr","v":"0x0e9ca77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9ca7a8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e9ca7b8"},"kids_end":{"t":"ptr","v":"0x0e9ca7bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe698"},"kids_end":{"t":"ptr","v":"0x0e8fe6a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":7500},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":2},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9ca7c8"},"kids_end":{"t":"ptr","v":"0x0e9ca7cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9ca918"},"kids_end":{"t":"ptr","v":"0x0e9ca91c"},"kids_cap":{"t":"ptr","v":"0x0e9ca91c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e9ca838"},"kids_end":{"t":"ptr","v":"0x0e9ca83c"},"kids_cap":{"t":"ptr","v":"0x0e9ca83c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9ca748"},"kids_end":{"t":"ptr","v":"0x0e9ca750"},"kids_cap":{"t":"ptr","v":"0x0e9ca750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9ca8a8"},"kids_end":{"t":"ptr","v":"0x0e9ca8b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9ca938"},"kids_end":{"t":"ptr","v":"0x0e9ca93c"},"kids_cap":{"t":"ptr","v":"0x0e9ca93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9ca848"},"kids_end":{"t":"ptr","v":"0x0e9ca84c"},"kids_cap":{"t":"ptr","v":"0x0e9ca84c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9ca888"},"kids_end":{"t":"ptr","v":"0x0e9ca88c"},"kids_cap":{"t":"ptr","v":"0x0e9ca88c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9ca8c8"},"kids_end":{"t":"ptr","v":"0x0e9ca8cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9ca898"},"kids_end":{"t":"ptr","v":"0x0e9ca89c"},"kids_cap":{"t":"ptr","v":"0x0e9ca89c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9ca8e8"},"kids_end":{"t":"ptr","v":"0x0e9ca8ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca8ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9ca7e8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9ca8f8"},"kids_end":{"t":"ptr","v":"0x0e9ca8fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e9ca818"},"kids_end":{"t":"ptr","v":"0x0e9ca81c"},"kids_cap":{"t":"ptr","v":"0x0e9ca81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e9ca7d8"},"kids_end":{"t":"ptr","v":"0x0e9ca7e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9ca908"},"kids_end":{"t":"ptr","v":"0x0e9ca910"},"kids_cap":{"t":"ptr","v":"0x0e9ca910"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9ca7f8"},"kids_end":{"t":"ptr","v":"0x0e9ca7fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9ca808"},"kids_end":{"t":"ptr","v":"0x0e9ca810"},"kids_cap":{"t":"ptr","v":"0x0e9ca810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9ca9a8"},"kids_end":{"t":"ptr","v":"0x0e9ca9b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9ca9b8"},"kids_end":{"t":"ptr","v":"0x0e9ca9bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe788"},"kids_end":{"t":"ptr","v":"0x0e8fe794"},"kids_cap":{"t":"ptr","v":"0x0e8fe794"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9caae8"},"kids_end":{"t":"ptr","v":"0x0e9caaec"},"kids_cap":{"t":"ptr","v":"0x0e9caaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e9caaa8"},"kids_end":{"t":"ptr","v":"0x0e9caab0"},"kids_cap":{"t":"ptr","v":"0x0e9caab0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9caa38"},"kids_end":{"t":"ptr","v":"0x0e9caa3c"},"kids_cap":{"t":"ptr","v":"0x0e9caa3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9caac8"},"kids_end":{"t":"ptr","v":"0x0e9caacc"},"kids_cap":{"t":"ptr","v":"0x0e9caacc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe860"},"kids_end":{"t":"ptr","v":"0x0e8fe870"},"kids_cap":{"t":"ptr","v":"0x0e8fe870"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e9caa98"},"kids_end":{"t":"ptr","v":"0x0e9caaa0"},"kids_cap":{"t":"ptr","v":"0x0e9caaa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9ca988"},"kids_end":{"t":"ptr","v":"0x0e9ca98c"},"kids_cap":{"t":"ptr","v":"0x0e9ca98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe878"},"kids_end":{"t":"ptr","v":"0x0e8fe888"},"kids_cap":{"t":"ptr","v":"0x0e8fe888"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9cab28"},"kids_end":{"t":"ptr","v":"0x0e9cab30"},"kids_cap":{"t":"ptr","v":"0x0e9cab30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9caaf8"},"kids_end":{"t":"ptr","v":"0x0e9caafc"},"kids_cap":{"t":"ptr","v":"0x0e9caafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e9cab38"},"kids_end":{"t":"ptr","v":"0x0e9cab3c"},"kids_cap":{"t":"ptr","v":"0x0e9cab3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e9cab08"},"kids_end":{"t":"ptr","v":"0x0e9cab10"},"kids_cap":{"t":"ptr","v":"0x0e9cab10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9caa08"},"kids_end":{"t":"ptr","v":"0x0e9caa0c"},"kids_cap":{"t":"ptr","v":"0x0e9caa0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9ca9c8"},"kids_end":{"t":"ptr","v":"0x0e9ca9d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e8fe7d0"},"kids_end":{"t":"ptr","v":"0x0e8fe7e0"},"kids_cap":{"t":"ptr","v":"0x0e8fe7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9ca9d8"},"kids_end":{"t":"ptr","v":"0x0e9ca9dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9caa58"},"kids_end":{"t":"ptr","v":"0x0e9caa5c"},"kids_cap":{"t":"ptr","v":"0x0e9caa5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9caa48"},"kids_end":{"t":"ptr","v":"0x0e9caa50"},"kids_cap":{"t":"ptr","v":"0x0e9caa50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9caa68"},"kids_end":{"t":"ptr","v":"0x0e9caa6c"},"kids_cap":{"t":"ptr","v":"0x0e9caa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9ca9e8"},"kids_end":{"t":"ptr","v":"0x0e9ca9ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca9ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe590"},"kids_end":{"t":"ptr","v":"0x0e8fe59c"},"kids_cap":{"t":"ptr","v":"0x0e8fe59c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe5f0"},"kids_end":{"t":"ptr","v":"0x0e8fe5fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe6b0"},"kids_end":{"t":"ptr","v":"0x0e8fe6bc"},"kids_cap":{"t":"ptr","v":"0x0e8fe6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe608"},"kids_end":{"t":"ptr","v":"0x0e8fe614"},"kids_cap":{"t":"ptr","v":"0x0e8fe614"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe5a8"},"kids_end":{"t":"ptr","v":"0x0e8fe5b4"},"kids_cap":{"t":"ptr","v":"0x0e8fe5b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88cdd8"},"kids_end":{"t":"ptr","v":"0x0e88cdf0"},"kids_cap":{"t":"ptr","v":"0x0e88cdf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e9caab8"},"kids_end":{"t":"ptr","v":"0x0e9caac0"},"kids_cap":{"t":"ptr","v":"0x0e9caac0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9cab18"},"kids_end":{"t":"ptr","v":"0x0e9cab20"},"kids_cap":{"t":"ptr","v":"0x0e9cab20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9caad8"},"kids_end":{"t":"ptr","v":"0x0e9caae0"},"kids_cap":{"t":"ptr","v":"0x0e9caae0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9ca958"},"kids_end":{"t":"ptr","v":"0x0e9ca960"},"kids_cap":{"t":"ptr","v":"0x0e9ca960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9caa78"},"kids_end":{"t":"ptr","v":"0x0e9caa7c"},"kids_cap":{"t":"ptr","v":"0x0e9caa7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9caa88"},"kids_end":{"t":"ptr","v":"0x0e9caa8c"},"kids_cap":{"t":"ptr","v":"0x0e9caa8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca998"},"kids_end":{"t":"ptr","v":"0x0e9ca99c"},"kids_cap":{"t":"ptr","v":"0x0e9ca99c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9ca948"},"kids_end":{"t":"ptr","v":"0x0e9ca94c"},"kids_cap":{"t":"ptr","v":"0x0e9ca94c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca968"},"kids_end":{"t":"ptr","v":"0x0e9ca96c"},"kids_cap":{"t":"ptr","v":"0x0e9ca96c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca9f8"},"kids_end":{"t":"ptr","v":"0x0e9ca9fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca978"},"kids_end":{"t":"ptr","v":"0x0e9ca97c"},"kids_cap":{"t":"ptr","v":"0x0e9ca97c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9caa18"},"kids_end":{"t":"ptr","v":"0x0e9caa1c"},"kids_cap":{"t":"ptr","v":"0x0e9caa1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9caa28"},"kids_end":{"t":"ptr","v":"0x0e9caa2c"},"kids_cap":{"t":"ptr","v":"0x0e9caa2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9cacd8"},"kids_end":{"t":"ptr","v":"0x0e9cacdc"},"kids_cap":{"t":"ptr","v":"0x0e9cacdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9caca8"},"kids_end":{"t":"ptr","v":"0x0e9cacac"},"kids_cap":{"t":"ptr","v":"0x0e9cacac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":72},"next_id":{"t":"i32","v":5},"vec_begin":{"t":"ptr","v":"0x35ee4918"},"vec_end":{"t":"ptr","v":"0x35ee4960"},"vec_cap":{"t":"ptr","v":"0x35ee4960"}}}}}},"diverged":true,"diff":[{"path":"side.events.after.v.next_id","why":"exact","orig":{"t":"i32","v":7},"ours":{"t":"i32","v":5}},{"path":"side.node[132].after.v.cost_rp","why":"exact","orig":{"t":"i32","v":10000},"ours":{"t":"i32","v":2147483647}},{"path":"side.node[132].after.v.state","why":"exact","orig":{"t":"i32","v":2},"ours":{"t":"i32","v":0}},{"path":"side.node[132].after.v.turn_available","why":"exact","orig":{"t":"i32","v":4},"ours":{"t":"i32","v":-1}},{"path":"side.node[136].after.v.cost_rp","why":"exact","orig":{"t":"i32","v":16000},"ours":{"t":"i32","v":2147483647}},{"path":"side.node[136].after.v.state","why":"exact","orig":{"t":"i32","v":2},"ours":{"t":"i32","v":0}},{"path":"side.node[136].after.v.turn_available","why":"exact","orig":{"t":"i32","v":4},"ours":{"t":"i32","v":-1}},{"path":"side.node[142].after.v.cost_rp","why":"exact","orig":{"t":"i32","v":8000},"ours":{"t":"i32","v":2147483647}},{"path":"side.node[142].after.v.state","why":"exact","orig":{"t":"i32","v":2},"ours":{"t":"i32","v":0}},{"path":"side.node[142].after.v.turn_available","why":"exact","orig":{"t":"i32","v":4},"ours":{"t":"i32","v":-1}},{"path":"side.node[144].after.v.order","why":"exact","orig":{"t":"i32","v":22},"ours":{"t":"i32","v":-1}},{"path":"side.node[144].after.v.turn_researched","why":"exact","orig":{"t":"i32","v":4},"ours":{"t":"i32","v":-1}}],"coverage":{"guards":["player","tree_header"],"undeclared":[{"region":"player","off":268,"len":3},{"region":"player","off":272,"len":3},{"region":"player","off":276,"len":3},{"region":"player","off":292,"len":3},{"region":"player","off":628,"len":3},{"region":"player","off":632,"len":3},{"region":"player","off":636,"len":3},{"region":"player","off":660,"len":4},{"region":"tree_header","off":32,"len":1}],"n":9}} +{"ts":381957858,"hook":"Game::TechTree::ProcessResearch","mode":"compare","call_id":4,"thread":1412,"depth":0,"args":[{"t":"ptr","v":"0x0e93b6c0","n":"tree"},{"t":"ptr","v":"0x0e906b68","n":"owner"},{"t":"i32","v":0,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e96ad78","n":"rng"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"list","v":[{"t":"struct","v":{"tech_id":{"t":"i32","v":90},"points":{"t":"i32","v":0}}}],"n":"alloc"},{"t":"i32","v":0,"n":"overbudget_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"overbudget":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9cb2e8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9cb2e8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cb1a8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cb1a8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cb158"},"kids_end":{"t":"ptr","v":"0x0e9cb15c"},"kids_cap":{"t":"ptr","v":"0x0e9cb15c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cb158"},"kids_end":{"t":"ptr","v":"0x0e9cb15c"},"kids_cap":{"t":"ptr","v":"0x0e9cb15c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9cb168"},"kids_end":{"t":"ptr","v":"0x0e9cb170"},"kids_cap":{"t":"ptr","v":"0x0e9cb170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9cb168"},"kids_end":{"t":"ptr","v":"0x0e9cb170"},"kids_cap":{"t":"ptr","v":"0x0e9cb170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9cb178"},"kids_end":{"t":"ptr","v":"0x0e9cb180"},"kids_cap":{"t":"ptr","v":"0x0e9cb180"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9cb178"},"kids_end":{"t":"ptr","v":"0x0e9cb180"},"kids_cap":{"t":"ptr","v":"0x0e9cb180"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cb188"},"kids_end":{"t":"ptr","v":"0x0e9cb18c"},"kids_cap":{"t":"ptr","v":"0x0e9cb18c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cb188"},"kids_end":{"t":"ptr","v":"0x0e9cb18c"},"kids_cap":{"t":"ptr","v":"0x0e9cb18c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9cb1b8"},"kids_end":{"t":"ptr","v":"0x0e9cb1bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9cb1b8"},"kids_end":{"t":"ptr","v":"0x0e9cb1bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9cb288"},"kids_end":{"t":"ptr","v":"0x0e9cb28c"},"kids_cap":{"t":"ptr","v":"0x0e9cb28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9cb288"},"kids_end":{"t":"ptr","v":"0x0e9cb28c"},"kids_cap":{"t":"ptr","v":"0x0e9cb28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe8f0"},"kids_end":{"t":"ptr","v":"0x0e8fe8fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe8f0"},"kids_end":{"t":"ptr","v":"0x0e8fe8fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cb2d8"},"kids_end":{"t":"ptr","v":"0x0e9cb2e0"},"kids_cap":{"t":"ptr","v":"0x0e9cb2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cb2d8"},"kids_end":{"t":"ptr","v":"0x0e9cb2e0"},"kids_cap":{"t":"ptr","v":"0x0e9cb2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe950"},"kids_end":{"t":"ptr","v":"0x0e8fe960"},"kids_cap":{"t":"ptr","v":"0x0e8fe960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe950"},"kids_end":{"t":"ptr","v":"0x0e8fe960"},"kids_cap":{"t":"ptr","v":"0x0e8fe960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cb1c8"},"kids_end":{"t":"ptr","v":"0x0e9cb1cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cb1c8"},"kids_end":{"t":"ptr","v":"0x0e9cb1cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cb1d8"},"kids_end":{"t":"ptr","v":"0x0e9cb1dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cb1d8"},"kids_end":{"t":"ptr","v":"0x0e9cb1dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fe908"},"kids_end":{"t":"ptr","v":"0x0e8fe914"},"kids_cap":{"t":"ptr","v":"0x0e8fe914"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fe908"},"kids_end":{"t":"ptr","v":"0x0e8fe914"},"kids_cap":{"t":"ptr","v":"0x0e8fe914"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9cb238"},"kids_end":{"t":"ptr","v":"0x0e9cb23c"},"kids_cap":{"t":"ptr","v":"0x0e9cb23c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9cb238"},"kids_end":{"t":"ptr","v":"0x0e9cb23c"},"kids_cap":{"t":"ptr","v":"0x0e9cb23c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cb1e8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cb1e8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9cb2f8"},"kids_end":{"t":"ptr","v":"0x0e9cb2fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb2fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9cb2f8"},"kids_end":{"t":"ptr","v":"0x0e9cb2fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb2fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe968"},"kids_end":{"t":"ptr","v":"0x0e8fe974"},"kids_cap":{"t":"ptr","v":"0x0e8fe974"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe968"},"kids_end":{"t":"ptr","v":"0x0e8fe974"},"kids_cap":{"t":"ptr","v":"0x0e8fe974"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fcce8"},"kids_end":{"t":"ptr","v":"0x0e8fccf8"},"kids_cap":{"t":"ptr","v":"0x0e8fccf8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fcce8"},"kids_end":{"t":"ptr","v":"0x0e8fccf8"},"kids_cap":{"t":"ptr","v":"0x0e8fccf8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cb318"},"kids_end":{"t":"ptr","v":"0x0e9cb31c"},"kids_cap":{"t":"ptr","v":"0x0e9cb31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cb318"},"kids_end":{"t":"ptr","v":"0x0e9cb31c"},"kids_cap":{"t":"ptr","v":"0x0e9cb31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cb248"},"kids_end":{"t":"ptr","v":"0x0e9cb24c"},"kids_cap":{"t":"ptr","v":"0x0e9cb24c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cb248"},"kids_end":{"t":"ptr","v":"0x0e9cb24c"},"kids_cap":{"t":"ptr","v":"0x0e9cb24c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb1f8"},"kids_end":{"t":"ptr","v":"0x0e9cb1fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb1f8"},"kids_end":{"t":"ptr","v":"0x0e9cb1fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb308"},"kids_end":{"t":"ptr","v":"0x0e9cb30c"},"kids_cap":{"t":"ptr","v":"0x0e9cb30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb308"},"kids_end":{"t":"ptr","v":"0x0e9cb30c"},"kids_cap":{"t":"ptr","v":"0x0e9cb30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9cb268"},"kids_end":{"t":"ptr","v":"0x0e9cb270"},"kids_cap":{"t":"ptr","v":"0x0e9cb270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9cb268"},"kids_end":{"t":"ptr","v":"0x0e9cb270"},"kids_cap":{"t":"ptr","v":"0x0e9cb270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fcd18"},"kids_end":{"t":"ptr","v":"0x0e8fcd24"},"kids_cap":{"t":"ptr","v":"0x0e8fcd24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fcd18"},"kids_end":{"t":"ptr","v":"0x0e8fcd24"},"kids_cap":{"t":"ptr","v":"0x0e8fcd24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb208"},"kids_end":{"t":"ptr","v":"0x0e9cb210"},"kids_cap":{"t":"ptr","v":"0x0e9cb210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb208"},"kids_end":{"t":"ptr","v":"0x0e9cb210"},"kids_cap":{"t":"ptr","v":"0x0e9cb210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fcb50"},"kids_end":{"t":"ptr","v":"0x0e8fcb5c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fcb50"},"kids_end":{"t":"ptr","v":"0x0e8fcb5c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fcad8"},"kids_end":{"t":"ptr","v":"0x0e8fcae4"},"kids_cap":{"t":"ptr","v":"0x0e8fcae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fcad8"},"kids_end":{"t":"ptr","v":"0x0e8fcae4"},"kids_cap":{"t":"ptr","v":"0x0e8fcae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e9cb218"},"kids_end":{"t":"ptr","v":"0x0e9cb220"},"kids_cap":{"t":"ptr","v":"0x0e9cb220"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e9cb218"},"kids_end":{"t":"ptr","v":"0x0e9cb220"},"kids_cap":{"t":"ptr","v":"0x0e9cb220"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9cb328"},"kids_end":{"t":"ptr","v":"0x0e9cb32c"},"kids_cap":{"t":"ptr","v":"0x0e9cb32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9cb328"},"kids_end":{"t":"ptr","v":"0x0e9cb32c"},"kids_cap":{"t":"ptr","v":"0x0e9cb32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cb278"},"kids_end":{"t":"ptr","v":"0x0e9cb27c"},"kids_cap":{"t":"ptr","v":"0x0e9cb27c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cb278"},"kids_end":{"t":"ptr","v":"0x0e9cb27c"},"kids_cap":{"t":"ptr","v":"0x0e9cb27c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fcc40"},"kids_end":{"t":"ptr","v":"0x0e8fcc4c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fcc40"},"kids_end":{"t":"ptr","v":"0x0e8fcc4c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9cb298"},"kids_end":{"t":"ptr","v":"0x0e9cb29c"},"kids_cap":{"t":"ptr","v":"0x0e9cb29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9cb298"},"kids_end":{"t":"ptr","v":"0x0e9cb29c"},"kids_cap":{"t":"ptr","v":"0x0e9cb29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb2a8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb2a8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9cb3b8"},"kids_end":{"t":"ptr","v":"0x0e9cb3bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9cb3b8"},"kids_end":{"t":"ptr","v":"0x0e9cb3bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cb358"},"kids_end":{"t":"ptr","v":"0x0e9cb35c"},"kids_cap":{"t":"ptr","v":"0x0e9cb35c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cb358"},"kids_end":{"t":"ptr","v":"0x0e9cb35c"},"kids_cap":{"t":"ptr","v":"0x0e9cb35c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fcb68"},"kids_end":{"t":"ptr","v":"0x0e8fcb74"},"kids_cap":{"t":"ptr","v":"0x0e8fcb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fcb68"},"kids_end":{"t":"ptr","v":"0x0e8fcb74"},"kids_cap":{"t":"ptr","v":"0x0e8fcb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9cb448"},"kids_end":{"t":"ptr","v":"0x0e9cb44c"},"kids_cap":{"t":"ptr","v":"0x0e9cb44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9cb448"},"kids_end":{"t":"ptr","v":"0x0e9cb44c"},"kids_cap":{"t":"ptr","v":"0x0e9cb44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb408"},"kids_end":{"t":"ptr","v":"0x0e9cb40c"},"kids_cap":{"t":"ptr","v":"0x0e9cb40c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb408"},"kids_end":{"t":"ptr","v":"0x0e9cb40c"},"kids_cap":{"t":"ptr","v":"0x0e9cb40c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb3e8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb3e8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb4a8"},"kids_end":{"t":"ptr","v":"0x0e9cb4ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb4a8"},"kids_end":{"t":"ptr","v":"0x0e9cb4ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb4d8"},"kids_end":{"t":"ptr","v":"0x0e9cb4dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb4d8"},"kids_end":{"t":"ptr","v":"0x0e9cb4dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb498"},"kids_end":{"t":"ptr","v":"0x0e9cb49c"},"kids_cap":{"t":"ptr","v":"0x0e9cb49c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb498"},"kids_end":{"t":"ptr","v":"0x0e9cb49c"},"kids_cap":{"t":"ptr","v":"0x0e9cb49c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9cb3f8"},"kids_end":{"t":"ptr","v":"0x0e9cb3fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9cb3f8"},"kids_end":{"t":"ptr","v":"0x0e9cb3fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fcaf0"},"kids_end":{"t":"ptr","v":"0x0e8fcafc"},"kids_cap":{"t":"ptr","v":"0x0e8fcafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fcaf0"},"kids_end":{"t":"ptr","v":"0x0e8fcafc"},"kids_cap":{"t":"ptr","v":"0x0e8fcafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fcb08"},"kids_end":{"t":"ptr","v":"0x0e8fcb14"},"kids_cap":{"t":"ptr","v":"0x0e8fcb14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fcb08"},"kids_end":{"t":"ptr","v":"0x0e8fcb14"},"kids_cap":{"t":"ptr","v":"0x0e8fcb14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb3a8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb3a8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb488"},"kids_end":{"t":"ptr","v":"0x0e9cb490"},"kids_cap":{"t":"ptr","v":"0x0e9cb490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb488"},"kids_end":{"t":"ptr","v":"0x0e9cb490"},"kids_cap":{"t":"ptr","v":"0x0e9cb490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cb4c8"},"kids_end":{"t":"ptr","v":"0x0e9cb4cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cb4c8"},"kids_end":{"t":"ptr","v":"0x0e9cb4cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88ce18"},"kids_end":{"t":"ptr","v":"0x0e88ce2c"},"kids_cap":{"t":"ptr","v":"0x0e88ce2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88ce18"},"kids_end":{"t":"ptr","v":"0x0e88ce2c"},"kids_cap":{"t":"ptr","v":"0x0e88ce2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fcb80"},"kids_end":{"t":"ptr","v":"0x0e8fcb8c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fcb80"},"kids_end":{"t":"ptr","v":"0x0e8fcb8c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969de0"},"kids_end":{"t":"ptr","v":"0x0e969e04"},"kids_cap":{"t":"ptr","v":"0x0e969e04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969de0"},"kids_end":{"t":"ptr","v":"0x0e969e04"},"kids_cap":{"t":"ptr","v":"0x0e969e04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fcc28"},"kids_end":{"t":"ptr","v":"0x0e8fcc34"},"kids_cap":{"t":"ptr","v":"0x0e8fcc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fcc28"},"kids_end":{"t":"ptr","v":"0x0e8fcc34"},"kids_cap":{"t":"ptr","v":"0x0e8fcc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[86]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921a90"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e9cb348"},"kids_end":{"t":"ptr","v":"0x0e9cb34c"},"kids_cap":{"t":"ptr","v":"0x0e9cb34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921a90"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e9cb348"},"kids_end":{"t":"ptr","v":"0x0e9cb34c"},"kids_cap":{"t":"ptr","v":"0x0e9cb34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[87]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04922318"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e9cb388"},"kids_end":{"t":"ptr","v":"0x0e9cb390"},"kids_cap":{"t":"ptr","v":"0x0e9cb390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04922318"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e9cb388"},"kids_end":{"t":"ptr","v":"0x0e9cb390"},"kids_cap":{"t":"ptr","v":"0x0e9cb390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[88]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920ab8"},"tech_id":{"t":"i32","v":88},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920ab8"},"tech_id":{"t":"i32","v":88},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb4b8"},"kids_end":{"t":"ptr","v":"0x0e9cb4bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb4b8"},"kids_end":{"t":"ptr","v":"0x0e9cb4bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9cb458"},"kids_end":{"t":"ptr","v":"0x0e9cb45c"},"kids_cap":{"t":"ptr","v":"0x0e9cb45c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9cb458"},"kids_end":{"t":"ptr","v":"0x0e9cb45c"},"kids_cap":{"t":"ptr","v":"0x0e9cb45c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb468"},"kids_end":{"t":"ptr","v":"0x0e9cb46c"},"kids_cap":{"t":"ptr","v":"0x0e9cb46c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb468"},"kids_end":{"t":"ptr","v":"0x0e9cb46c"},"kids_cap":{"t":"ptr","v":"0x0e9cb46c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb478"},"kids_end":{"t":"ptr","v":"0x0e9cb47c"},"kids_cap":{"t":"ptr","v":"0x0e9cb47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb478"},"kids_end":{"t":"ptr","v":"0x0e9cb47c"},"kids_cap":{"t":"ptr","v":"0x0e9cb47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb3d8"},"kids_end":{"t":"ptr","v":"0x0e9cb3dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb3d8"},"kids_end":{"t":"ptr","v":"0x0e9cb3dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb438"},"kids_end":{"t":"ptr","v":"0x0e9cb440"},"kids_cap":{"t":"ptr","v":"0x0e9cb440"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb438"},"kids_end":{"t":"ptr","v":"0x0e9cb440"},"kids_cap":{"t":"ptr","v":"0x0e9cb440"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb368"},"kids_end":{"t":"ptr","v":"0x0e9cb370"},"kids_cap":{"t":"ptr","v":"0x0e9cb370"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb368"},"kids_end":{"t":"ptr","v":"0x0e9cb370"},"kids_cap":{"t":"ptr","v":"0x0e9cb370"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d378"},"kids_end":{"t":"ptr","v":"0x0e88d38c"},"kids_cap":{"t":"ptr","v":"0x0e88d38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d378"},"kids_end":{"t":"ptr","v":"0x0e88d38c"},"kids_cap":{"t":"ptr","v":"0x0e88d38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fcb20"},"kids_end":{"t":"ptr","v":"0x0e8fcb2c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fcb20"},"kids_end":{"t":"ptr","v":"0x0e8fcb2c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb378"},"kids_end":{"t":"ptr","v":"0x0e9cb37c"},"kids_cap":{"t":"ptr","v":"0x0e9cb37c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb378"},"kids_end":{"t":"ptr","v":"0x0e9cb37c"},"kids_cap":{"t":"ptr","v":"0x0e9cb37c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb398"},"kids_end":{"t":"ptr","v":"0x0e9cb39c"},"kids_cap":{"t":"ptr","v":"0x0e9cb39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb398"},"kids_end":{"t":"ptr","v":"0x0e9cb39c"},"kids_cap":{"t":"ptr","v":"0x0e9cb39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9cb3c8"},"kids_end":{"t":"ptr","v":"0x0e9cb3cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9cb3c8"},"kids_end":{"t":"ptr","v":"0x0e9cb3cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9cb418"},"kids_end":{"t":"ptr","v":"0x0e9cb41c"},"kids_cap":{"t":"ptr","v":"0x0e9cb41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9cb418"},"kids_end":{"t":"ptr","v":"0x0e9cb41c"},"kids_cap":{"t":"ptr","v":"0x0e9cb41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e9cb428"},"kids_end":{"t":"ptr","v":"0x0e9cb430"},"kids_cap":{"t":"ptr","v":"0x0e9cb430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e9cb428"},"kids_end":{"t":"ptr","v":"0x0e9cb430"},"kids_cap":{"t":"ptr","v":"0x0e9cb430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fccd0"},"kids_end":{"t":"ptr","v":"0x0e8fccdc"},"kids_cap":{"t":"ptr","v":"0x0e8fccdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fccd0"},"kids_end":{"t":"ptr","v":"0x0e8fccdc"},"kids_cap":{"t":"ptr","v":"0x0e8fccdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e9c95d8"},"kids_end":{"t":"ptr","v":"0x0e9c95e0"},"kids_cap":{"t":"ptr","v":"0x0e9c95e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e9c95d8"},"kids_end":{"t":"ptr","v":"0x0e9c95e0"},"kids_cap":{"t":"ptr","v":"0x0e9c95e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9c9638"},"kids_end":{"t":"ptr","v":"0x0e9c9640"},"kids_cap":{"t":"ptr","v":"0x0e9c9640"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9c9638"},"kids_end":{"t":"ptr","v":"0x0e9c9640"},"kids_cap":{"t":"ptr","v":"0x0e9c9640"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e9c9718"},"kids_end":{"t":"ptr","v":"0x0e9c971c"},"kids_cap":{"t":"ptr","v":"0x0e9c971c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e9c9718"},"kids_end":{"t":"ptr","v":"0x0e9c971c"},"kids_cap":{"t":"ptr","v":"0x0e9c971c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fcbf8"},"kids_end":{"t":"ptr","v":"0x0e8fcc04"},"kids_cap":{"t":"ptr","v":"0x0e8fcc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fcbf8"},"kids_end":{"t":"ptr","v":"0x0e8fcc04"},"kids_cap":{"t":"ptr","v":"0x0e8fcc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fcb38"},"kids_end":{"t":"ptr","v":"0x0e8fcb44"},"kids_cap":{"t":"ptr","v":"0x0e8fcb44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fcb38"},"kids_end":{"t":"ptr","v":"0x0e8fcb44"},"kids_cap":{"t":"ptr","v":"0x0e8fcb44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fcb98"},"kids_end":{"t":"ptr","v":"0x0e8fcba8"},"kids_cap":{"t":"ptr","v":"0x0e8fcba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fcb98"},"kids_end":{"t":"ptr","v":"0x0e8fcba8"},"kids_cap":{"t":"ptr","v":"0x0e8fcba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9c96a8"},"kids_end":{"t":"ptr","v":"0x0e9c96b0"},"kids_cap":{"t":"ptr","v":"0x0e9c96b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9c96a8"},"kids_end":{"t":"ptr","v":"0x0e9c96b0"},"kids_cap":{"t":"ptr","v":"0x0e9c96b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9c9588"},"kids_end":{"t":"ptr","v":"0x0e9c958c"},"kids_cap":{"t":"ptr","v":"0x0e9c958c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9c9588"},"kids_end":{"t":"ptr","v":"0x0e9c958c"},"kids_cap":{"t":"ptr","v":"0x0e9c958c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fcbe0"},"kids_end":{"t":"ptr","v":"0x0e8fcbec"},"kids_cap":{"t":"ptr","v":"0x0e8fcbec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fcbe0"},"kids_end":{"t":"ptr","v":"0x0e8fcbec"},"kids_cap":{"t":"ptr","v":"0x0e8fcbec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9c96f8"},"kids_end":{"t":"ptr","v":"0x0e9c96fc"},"kids_cap":{"t":"ptr","v":"0x0e9c96fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9c96f8"},"kids_end":{"t":"ptr","v":"0x0e9c96fc"},"kids_cap":{"t":"ptr","v":"0x0e9c96fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9c9598"},"kids_end":{"t":"ptr","v":"0x0e9c959c"},"kids_cap":{"t":"ptr","v":"0x0e9c959c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9c9598"},"kids_end":{"t":"ptr","v":"0x0e9c959c"},"kids_cap":{"t":"ptr","v":"0x0e9c959c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e9c95e8"},"kids_end":{"t":"ptr","v":"0x0e9c95ec"},"kids_cap":{"t":"ptr","v":"0x0e9c95ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e9c95e8"},"kids_end":{"t":"ptr","v":"0x0e9c95ec"},"kids_cap":{"t":"ptr","v":"0x0e9c95ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e9c96d8"},"kids_end":{"t":"ptr","v":"0x0e9c96e0"},"kids_cap":{"t":"ptr","v":"0x0e9c96e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e9c96d8"},"kids_end":{"t":"ptr","v":"0x0e9c96e0"},"kids_cap":{"t":"ptr","v":"0x0e9c96e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9c9618"},"kids_end":{"t":"ptr","v":"0x0e9c961c"},"kids_cap":{"t":"ptr","v":"0x0e9c961c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9c9618"},"kids_end":{"t":"ptr","v":"0x0e9c961c"},"kids_cap":{"t":"ptr","v":"0x0e9c961c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9c9548"},"kids_end":{"t":"ptr","v":"0x0e9c9550"},"kids_cap":{"t":"ptr","v":"0x0e9c9550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9c9548"},"kids_end":{"t":"ptr","v":"0x0e9c9550"},"kids_cap":{"t":"ptr","v":"0x0e9c9550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fcd00"},"kids_end":{"t":"ptr","v":"0x0e8fcd0c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fcd00"},"kids_end":{"t":"ptr","v":"0x0e8fcd0c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e9c95a8"},"kids_end":{"t":"ptr","v":"0x0e9c95ac"},"kids_cap":{"t":"ptr","v":"0x0e9c95ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e9c95a8"},"kids_end":{"t":"ptr","v":"0x0e9c95ac"},"kids_cap":{"t":"ptr","v":"0x0e9c95ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9c9708"},"kids_end":{"t":"ptr","v":"0x0e9c9710"},"kids_cap":{"t":"ptr","v":"0x0e9c9710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9c9708"},"kids_end":{"t":"ptr","v":"0x0e9c9710"},"kids_cap":{"t":"ptr","v":"0x0e9c9710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e9c9558"},"kids_end":{"t":"ptr","v":"0x0e9c955c"},"kids_cap":{"t":"ptr","v":"0x0e9c955c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e9c9558"},"kids_end":{"t":"ptr","v":"0x0e9c955c"},"kids_cap":{"t":"ptr","v":"0x0e9c955c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e9c9698"},"kids_end":{"t":"ptr","v":"0x0e9c96a0"},"kids_cap":{"t":"ptr","v":"0x0e9c96a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e9c9698"},"kids_end":{"t":"ptr","v":"0x0e9c96a0"},"kids_cap":{"t":"ptr","v":"0x0e9c96a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9c9648"},"kids_end":{"t":"ptr","v":"0x0e9c9650"},"kids_cap":{"t":"ptr","v":"0x0e9c9650"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9c9648"},"kids_end":{"t":"ptr","v":"0x0e9c9650"},"kids_cap":{"t":"ptr","v":"0x0e9c9650"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e9c9738"},"kids_end":{"t":"ptr","v":"0x0e9c9740"},"kids_cap":{"t":"ptr","v":"0x0e9c9740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e9c9738"},"kids_end":{"t":"ptr","v":"0x0e9c9740"},"kids_cap":{"t":"ptr","v":"0x0e9c9740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e9c9728"},"kids_end":{"t":"ptr","v":"0x0e9c9730"},"kids_cap":{"t":"ptr","v":"0x0e9c9730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e9c9728"},"kids_end":{"t":"ptr","v":"0x0e9c9730"},"kids_cap":{"t":"ptr","v":"0x0e9c9730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e9c96b8"},"kids_end":{"t":"ptr","v":"0x0e9c96bc"},"kids_cap":{"t":"ptr","v":"0x0e9c96bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e9c96b8"},"kids_end":{"t":"ptr","v":"0x0e9c96bc"},"kids_cap":{"t":"ptr","v":"0x0e9c96bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9c9568"},"kids_end":{"t":"ptr","v":"0x0e9c956c"},"kids_cap":{"t":"ptr","v":"0x0e9c956c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9c9568"},"kids_end":{"t":"ptr","v":"0x0e9c956c"},"kids_cap":{"t":"ptr","v":"0x0e9c956c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9c9578"},"kids_end":{"t":"ptr","v":"0x0e9c9580"},"kids_cap":{"t":"ptr","v":"0x0e9c9580"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9c9578"},"kids_end":{"t":"ptr","v":"0x0e9c9580"},"kids_cap":{"t":"ptr","v":"0x0e9c9580"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9c95c8"},"kids_end":{"t":"ptr","v":"0x0e9c95d0"},"kids_cap":{"t":"ptr","v":"0x0e9c95d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9c95c8"},"kids_end":{"t":"ptr","v":"0x0e9c95d0"},"kids_cap":{"t":"ptr","v":"0x0e9c95d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9c95b8"},"kids_end":{"t":"ptr","v":"0x0e9c95bc"},"kids_cap":{"t":"ptr","v":"0x0e9c95bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9c95b8"},"kids_end":{"t":"ptr","v":"0x0e9c95bc"},"kids_cap":{"t":"ptr","v":"0x0e9c95bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e9c95f8"},"kids_end":{"t":"ptr","v":"0x0e9c95fc"},"kids_cap":{"t":"ptr","v":"0x0e9c95fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e9c95f8"},"kids_end":{"t":"ptr","v":"0x0e9c95fc"},"kids_cap":{"t":"ptr","v":"0x0e9c95fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9c9608"},"kids_end":{"t":"ptr","v":"0x0e9c9610"},"kids_cap":{"t":"ptr","v":"0x0e9c9610"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9c9608"},"kids_end":{"t":"ptr","v":"0x0e9c9610"},"kids_cap":{"t":"ptr","v":"0x0e9c9610"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9c9628"},"kids_end":{"t":"ptr","v":"0x0e9c962c"},"kids_cap":{"t":"ptr","v":"0x0e9c962c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9c9628"},"kids_end":{"t":"ptr","v":"0x0e9c962c"},"kids_cap":{"t":"ptr","v":"0x0e9c962c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e9c9658"},"kids_end":{"t":"ptr","v":"0x0e9c965c"},"kids_cap":{"t":"ptr","v":"0x0e9c965c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e9c9658"},"kids_end":{"t":"ptr","v":"0x0e9c965c"},"kids_cap":{"t":"ptr","v":"0x0e9c965c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9c9668"},"kids_end":{"t":"ptr","v":"0x0e9c9670"},"kids_cap":{"t":"ptr","v":"0x0e9c9670"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9c9668"},"kids_end":{"t":"ptr","v":"0x0e9c9670"},"kids_cap":{"t":"ptr","v":"0x0e9c9670"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9c9678"},"kids_end":{"t":"ptr","v":"0x0e9c967c"},"kids_cap":{"t":"ptr","v":"0x0e9c967c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9c9678"},"kids_end":{"t":"ptr","v":"0x0e9c967c"},"kids_cap":{"t":"ptr","v":"0x0e9c967c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e9c96c8"},"kids_end":{"t":"ptr","v":"0x0e9c96cc"},"kids_cap":{"t":"ptr","v":"0x0e9c96cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e9c96c8"},"kids_end":{"t":"ptr","v":"0x0e9c96cc"},"kids_cap":{"t":"ptr","v":"0x0e9c96cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fcbb0"},"kids_end":{"t":"ptr","v":"0x0e8fcbbc"},"kids_cap":{"t":"ptr","v":"0x0e8fcbbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fcbb0"},"kids_end":{"t":"ptr","v":"0x0e8fcbbc"},"kids_cap":{"t":"ptr","v":"0x0e8fcbbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fcd78"},"kids_end":{"t":"ptr","v":"0x0e8fcd88"},"kids_cap":{"t":"ptr","v":"0x0e8fcd88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fcd78"},"kids_end":{"t":"ptr","v":"0x0e8fcd88"},"kids_cap":{"t":"ptr","v":"0x0e8fcd88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9c96e8"},"kids_end":{"t":"ptr","v":"0x0e9c96f0"},"kids_cap":{"t":"ptr","v":"0x0e9c96f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9c96e8"},"kids_end":{"t":"ptr","v":"0x0e9c96f0"},"kids_cap":{"t":"ptr","v":"0x0e9c96f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e9c9688"},"kids_end":{"t":"ptr","v":"0x0e9c9690"},"kids_cap":{"t":"ptr","v":"0x0e9c9690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e9c9688"},"kids_end":{"t":"ptr","v":"0x0e9c9690"},"kids_cap":{"t":"ptr","v":"0x0e9c9690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9c98e8"},"kids_end":{"t":"ptr","v":"0x0e9c98ec"},"kids_cap":{"t":"ptr","v":"0x0e9c98ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9c98e8"},"kids_end":{"t":"ptr","v":"0x0e9c98ec"},"kids_cap":{"t":"ptr","v":"0x0e9c98ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9c97a8"},"kids_end":{"t":"ptr","v":"0x0e9c97b0"},"kids_cap":{"t":"ptr","v":"0x0e9c97b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9c97a8"},"kids_end":{"t":"ptr","v":"0x0e9c97b0"},"kids_cap":{"t":"ptr","v":"0x0e9c97b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e9c98b8"},"kids_end":{"t":"ptr","v":"0x0e9c98c0"},"kids_cap":{"t":"ptr","v":"0x0e9c98c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e9c98b8"},"kids_end":{"t":"ptr","v":"0x0e9c98c0"},"kids_cap":{"t":"ptr","v":"0x0e9c98c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9c98a8"},"kids_end":{"t":"ptr","v":"0x0e9c98b0"},"kids_cap":{"t":"ptr","v":"0x0e9c98b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9c98a8"},"kids_end":{"t":"ptr","v":"0x0e9c98b0"},"kids_cap":{"t":"ptr","v":"0x0e9c98b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e9c98d8"},"kids_end":{"t":"ptr","v":"0x0e9c98dc"},"kids_cap":{"t":"ptr","v":"0x0e9c98dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e9c98d8"},"kids_end":{"t":"ptr","v":"0x0e9c98dc"},"kids_cap":{"t":"ptr","v":"0x0e9c98dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e9c9748"},"kids_end":{"t":"ptr","v":"0x0e9c974c"},"kids_cap":{"t":"ptr","v":"0x0e9c974c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e9c9748"},"kids_end":{"t":"ptr","v":"0x0e9c974c"},"kids_cap":{"t":"ptr","v":"0x0e9c974c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9c9788"},"kids_end":{"t":"ptr","v":"0x0e9c9790"},"kids_cap":{"t":"ptr","v":"0x0e9c9790"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9c9788"},"kids_end":{"t":"ptr","v":"0x0e9c9790"},"kids_cap":{"t":"ptr","v":"0x0e9c9790"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e9c9758"},"kids_end":{"t":"ptr","v":"0x0e9c975c"},"kids_cap":{"t":"ptr","v":"0x0e9c975c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e9c9758"},"kids_end":{"t":"ptr","v":"0x0e9c975c"},"kids_cap":{"t":"ptr","v":"0x0e9c975c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fcd60"},"kids_end":{"t":"ptr","v":"0x0e8fcd6c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fcd60"},"kids_end":{"t":"ptr","v":"0x0e8fcd6c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9c98c8"},"kids_end":{"t":"ptr","v":"0x0e9c98cc"},"kids_cap":{"t":"ptr","v":"0x0e9c98cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9c98c8"},"kids_end":{"t":"ptr","v":"0x0e9c98cc"},"kids_cap":{"t":"ptr","v":"0x0e9c98cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d098"},"kids_end":{"t":"ptr","v":"0x0e88d0ac"},"kids_cap":{"t":"ptr","v":"0x0e88d0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d098"},"kids_end":{"t":"ptr","v":"0x0e88d0ac"},"kids_cap":{"t":"ptr","v":"0x0e88d0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e9c98f8"},"kids_end":{"t":"ptr","v":"0x0e9c98fc"},"kids_cap":{"t":"ptr","v":"0x0e9c98fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e9c98f8"},"kids_end":{"t":"ptr","v":"0x0e9c98fc"},"kids_cap":{"t":"ptr","v":"0x0e9c98fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e9c9878"},"kids_end":{"t":"ptr","v":"0x0e9c987c"},"kids_cap":{"t":"ptr","v":"0x0e9c987c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e9c9878"},"kids_end":{"t":"ptr","v":"0x0e9c987c"},"kids_cap":{"t":"ptr","v":"0x0e9c987c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e9c9838"},"kids_end":{"t":"ptr","v":"0x0e9c983c"},"kids_cap":{"t":"ptr","v":"0x0e9c983c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e9c9838"},"kids_end":{"t":"ptr","v":"0x0e9c983c"},"kids_cap":{"t":"ptr","v":"0x0e9c983c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9c9908"},"kids_end":{"t":"ptr","v":"0x0e9c990c"},"kids_cap":{"t":"ptr","v":"0x0e9c990c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9c9908"},"kids_end":{"t":"ptr","v":"0x0e9c990c"},"kids_cap":{"t":"ptr","v":"0x0e9c990c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9c9818"},"kids_end":{"t":"ptr","v":"0x0e9c981c"},"kids_cap":{"t":"ptr","v":"0x0e9c981c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9c9818"},"kids_end":{"t":"ptr","v":"0x0e9c981c"},"kids_cap":{"t":"ptr","v":"0x0e9c981c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fcd30"},"kids_end":{"t":"ptr","v":"0x0e8fcd40"},"kids_cap":{"t":"ptr","v":"0x0e8fcd40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fcd30"},"kids_end":{"t":"ptr","v":"0x0e8fcd40"},"kids_cap":{"t":"ptr","v":"0x0e8fcd40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fcbc8"},"kids_end":{"t":"ptr","v":"0x0e8fcbd4"},"kids_cap":{"t":"ptr","v":"0x0e8fcbd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fcbc8"},"kids_end":{"t":"ptr","v":"0x0e8fcbd4"},"kids_cap":{"t":"ptr","v":"0x0e8fcbd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[217]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e840"},"tech_id":{"t":"i32","v":217},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e840"},"tech_id":{"t":"i32","v":217},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9c9928"},"kids_end":{"t":"ptr","v":"0x0e9c992c"},"kids_cap":{"t":"ptr","v":"0x0e9c992c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9c9928"},"kids_end":{"t":"ptr","v":"0x0e9c992c"},"kids_cap":{"t":"ptr","v":"0x0e9c992c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9c97c8"},"kids_end":{"t":"ptr","v":"0x0e9c97cc"},"kids_cap":{"t":"ptr","v":"0x0e9c97cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9c97c8"},"kids_end":{"t":"ptr","v":"0x0e9c97cc"},"kids_cap":{"t":"ptr","v":"0x0e9c97cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fcc58"},"kids_end":{"t":"ptr","v":"0x0e8fcc68"},"kids_cap":{"t":"ptr","v":"0x0e8fcc68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fcc58"},"kids_end":{"t":"ptr","v":"0x0e8fcc68"},"kids_cap":{"t":"ptr","v":"0x0e8fcc68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9c9798"},"kids_end":{"t":"ptr","v":"0x0e9c97a0"},"kids_cap":{"t":"ptr","v":"0x0e9c97a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9c9798"},"kids_end":{"t":"ptr","v":"0x0e9c97a0"},"kids_cap":{"t":"ptr","v":"0x0e9c97a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9c9938"},"kids_end":{"t":"ptr","v":"0x0e9c993c"},"kids_cap":{"t":"ptr","v":"0x0e9c993c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9c9938"},"kids_end":{"t":"ptr","v":"0x0e9c993c"},"kids_cap":{"t":"ptr","v":"0x0e9c993c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e9c9778"},"kids_end":{"t":"ptr","v":"0x0e9c977c"},"kids_cap":{"t":"ptr","v":"0x0e9c977c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e9c9778"},"kids_end":{"t":"ptr","v":"0x0e9c977c"},"kids_cap":{"t":"ptr","v":"0x0e9c977c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fcd48"},"kids_end":{"t":"ptr","v":"0x0e8fcd54"},"kids_cap":{"t":"ptr","v":"0x0e8fcd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fcd48"},"kids_end":{"t":"ptr","v":"0x0e8fcd54"},"kids_cap":{"t":"ptr","v":"0x0e8fcd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9c9768"},"kids_end":{"t":"ptr","v":"0x0e9c9770"},"kids_cap":{"t":"ptr","v":"0x0e9c9770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9c9768"},"kids_end":{"t":"ptr","v":"0x0e9c9770"},"kids_cap":{"t":"ptr","v":"0x0e9c9770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d398"},"kids_end":{"t":"ptr","v":"0x0e88d3ac"},"kids_cap":{"t":"ptr","v":"0x0e88d3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d398"},"kids_end":{"t":"ptr","v":"0x0e88d3ac"},"kids_cap":{"t":"ptr","v":"0x0e88d3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e9c9888"},"kids_end":{"t":"ptr","v":"0x0e9c988c"},"kids_cap":{"t":"ptr","v":"0x0e9c988c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e9c9888"},"kids_end":{"t":"ptr","v":"0x0e9c988c"},"kids_cap":{"t":"ptr","v":"0x0e9c988c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e9c97b8"},"kids_end":{"t":"ptr","v":"0x0e9c97bc"},"kids_cap":{"t":"ptr","v":"0x0e9c97bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e9c97b8"},"kids_end":{"t":"ptr","v":"0x0e9c97bc"},"kids_cap":{"t":"ptr","v":"0x0e9c97bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9c9898"},"kids_end":{"t":"ptr","v":"0x0e9c989c"},"kids_cap":{"t":"ptr","v":"0x0e9c989c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9c9898"},"kids_end":{"t":"ptr","v":"0x0e9c989c"},"kids_cap":{"t":"ptr","v":"0x0e9c989c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e9c97d8"},"kids_end":{"t":"ptr","v":"0x0e9c97dc"},"kids_cap":{"t":"ptr","v":"0x0e9c97dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e9c97d8"},"kids_end":{"t":"ptr","v":"0x0e9c97dc"},"kids_cap":{"t":"ptr","v":"0x0e9c97dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9c97e8"},"kids_end":{"t":"ptr","v":"0x0e9c97ec"},"kids_cap":{"t":"ptr","v":"0x0e9c97ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9c97e8"},"kids_end":{"t":"ptr","v":"0x0e9c97ec"},"kids_cap":{"t":"ptr","v":"0x0e9c97ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9c97f8"},"kids_end":{"t":"ptr","v":"0x0e9c9800"},"kids_cap":{"t":"ptr","v":"0x0e9c9800"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9c97f8"},"kids_end":{"t":"ptr","v":"0x0e9c9800"},"kids_cap":{"t":"ptr","v":"0x0e9c9800"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d078"},"kids_end":{"t":"ptr","v":"0x0e88d08c"},"kids_cap":{"t":"ptr","v":"0x0e88d08c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d078"},"kids_end":{"t":"ptr","v":"0x0e88d08c"},"kids_cap":{"t":"ptr","v":"0x0e88d08c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e9c9918"},"kids_end":{"t":"ptr","v":"0x0e9c991c"},"kids_cap":{"t":"ptr","v":"0x0e9c991c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e9c9918"},"kids_end":{"t":"ptr","v":"0x0e9c991c"},"kids_cap":{"t":"ptr","v":"0x0e9c991c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9c9848"},"kids_end":{"t":"ptr","v":"0x0e9c984c"},"kids_cap":{"t":"ptr","v":"0x0e9c984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9c9848"},"kids_end":{"t":"ptr","v":"0x0e9c984c"},"kids_cap":{"t":"ptr","v":"0x0e9c984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e9c9868"},"kids_end":{"t":"ptr","v":"0x0e9c986c"},"kids_cap":{"t":"ptr","v":"0x0e9c986c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e9c9868"},"kids_end":{"t":"ptr","v":"0x0e9c986c"},"kids_cap":{"t":"ptr","v":"0x0e9c986c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9c9808"},"kids_end":{"t":"ptr","v":"0x0e9c9810"},"kids_cap":{"t":"ptr","v":"0x0e9c9810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9c9808"},"kids_end":{"t":"ptr","v":"0x0e9c9810"},"kids_cap":{"t":"ptr","v":"0x0e9c9810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9c9858"},"kids_end":{"t":"ptr","v":"0x0e9c9860"},"kids_cap":{"t":"ptr","v":"0x0e9c9860"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9c9858"},"kids_end":{"t":"ptr","v":"0x0e9c9860"},"kids_cap":{"t":"ptr","v":"0x0e9c9860"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e9c9828"},"kids_end":{"t":"ptr","v":"0x0e9c9830"},"kids_cap":{"t":"ptr","v":"0x0e9c9830"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e9c9828"},"kids_end":{"t":"ptr","v":"0x0e9c9830"},"kids_cap":{"t":"ptr","v":"0x0e9c9830"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9c9e78"},"kids_end":{"t":"ptr","v":"0x0e9c9e7c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9c9e78"},"kids_end":{"t":"ptr","v":"0x0e9c9e7c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[253]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697168"},"tech_id":{"t":"i32","v":253},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697168"},"tech_id":{"t":"i32","v":253},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9c9e88"},"kids_end":{"t":"ptr","v":"0x0e9c9e8c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9c9e88"},"kids_end":{"t":"ptr","v":"0x0e9c9e8c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fcc10"},"kids_end":{"t":"ptr","v":"0x0e8fcc1c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fcc10"},"kids_end":{"t":"ptr","v":"0x0e8fcc1c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fca90"},"kids_end":{"t":"ptr","v":"0x0e8fca9c"},"kids_cap":{"t":"ptr","v":"0x0e8fca9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fca90"},"kids_end":{"t":"ptr","v":"0x0e8fca9c"},"kids_cap":{"t":"ptr","v":"0x0e8fca9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fcc70"},"kids_end":{"t":"ptr","v":"0x0e8fcc7c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fcc70"},"kids_end":{"t":"ptr","v":"0x0e8fcc7c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fcaa8"},"kids_end":{"t":"ptr","v":"0x0e8fcab4"},"kids_cap":{"t":"ptr","v":"0x0e8fcab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fcaa8"},"kids_end":{"t":"ptr","v":"0x0e8fcab4"},"kids_cap":{"t":"ptr","v":"0x0e8fcab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fcc88"},"kids_end":{"t":"ptr","v":"0x0e8fcc94"},"kids_cap":{"t":"ptr","v":"0x0e8fcc94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fcc88"},"kids_end":{"t":"ptr","v":"0x0e8fcc94"},"kids_cap":{"t":"ptr","v":"0x0e8fcc94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[269]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699c10"},"tech_id":{"t":"i32","v":269},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699c10"},"tech_id":{"t":"i32","v":269},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d178"},"kids_end":{"t":"ptr","v":"0x0e88d190"},"kids_cap":{"t":"ptr","v":"0x0e88d190"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d178"},"kids_end":{"t":"ptr","v":"0x0e88d190"},"kids_cap":{"t":"ptr","v":"0x0e88d190"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":80000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":80000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9ca0c8"},"kids_end":{"t":"ptr","v":"0x0e9ca0d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca0d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9ca0c8"},"kids_end":{"t":"ptr","v":"0x0e9ca0d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca0d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9ca088"},"kids_end":{"t":"ptr","v":"0x0e9ca090"},"kids_cap":{"t":"ptr","v":"0x0e9ca090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9ca088"},"kids_end":{"t":"ptr","v":"0x0e9ca090"},"kids_cap":{"t":"ptr","v":"0x0e9ca090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9c9f78"},"kids_end":{"t":"ptr","v":"0x0e9c9f80"},"kids_cap":{"t":"ptr","v":"0x0e9c9f80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9c9f78"},"kids_end":{"t":"ptr","v":"0x0e9c9f80"},"kids_cap":{"t":"ptr","v":"0x0e9c9f80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e9c9f98"},"kids_end":{"t":"ptr","v":"0x0e9c9fa0"},"kids_cap":{"t":"ptr","v":"0x0e9c9fa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e9c9f98"},"kids_end":{"t":"ptr","v":"0x0e9c9fa0"},"kids_cap":{"t":"ptr","v":"0x0e9c9fa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9c9fa8"},"kids_end":{"t":"ptr","v":"0x0e9c9fac"},"kids_cap":{"t":"ptr","v":"0x0e9c9fac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9c9fa8"},"kids_end":{"t":"ptr","v":"0x0e9c9fac"},"kids_cap":{"t":"ptr","v":"0x0e9c9fac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9ca098"},"kids_end":{"t":"ptr","v":"0x0e9ca09c"},"kids_cap":{"t":"ptr","v":"0x0e9ca09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9ca098"},"kids_end":{"t":"ptr","v":"0x0e9ca09c"},"kids_cap":{"t":"ptr","v":"0x0e9ca09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca0e8"},"kids_end":{"t":"ptr","v":"0x0e9ca0ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca0e8"},"kids_end":{"t":"ptr","v":"0x0e9ca0ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9c9fe8"},"kids_end":{"t":"ptr","v":"0x0e9c9fec"},"kids_cap":{"t":"ptr","v":"0x0e9c9fec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9c9fe8"},"kids_end":{"t":"ptr","v":"0x0e9c9fec"},"kids_cap":{"t":"ptr","v":"0x0e9c9fec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca128"},"kids_end":{"t":"ptr","v":"0x0e9ca12c"},"kids_cap":{"t":"ptr","v":"0x0e9ca12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca128"},"kids_end":{"t":"ptr","v":"0x0e9ca12c"},"kids_cap":{"t":"ptr","v":"0x0e9ca12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca008"},"kids_end":{"t":"ptr","v":"0x0e9ca00c"},"kids_cap":{"t":"ptr","v":"0x0e9ca00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca008"},"kids_end":{"t":"ptr","v":"0x0e9ca00c"},"kids_cap":{"t":"ptr","v":"0x0e9ca00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca0f8"},"kids_end":{"t":"ptr","v":"0x0e9ca0fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca0f8"},"kids_end":{"t":"ptr","v":"0x0e9ca0fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9ca0d8"},"kids_end":{"t":"ptr","v":"0x0e9ca0dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9ca0d8"},"kids_end":{"t":"ptr","v":"0x0e9ca0dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9ca058"},"kids_end":{"t":"ptr","v":"0x0e9ca05c"},"kids_cap":{"t":"ptr","v":"0x0e9ca05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9ca058"},"kids_end":{"t":"ptr","v":"0x0e9ca05c"},"kids_cap":{"t":"ptr","v":"0x0e9ca05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9c9fc8"},"kids_end":{"t":"ptr","v":"0x0e9c9fcc"},"kids_cap":{"t":"ptr","v":"0x0e9c9fcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9c9fc8"},"kids_end":{"t":"ptr","v":"0x0e9c9fcc"},"kids_cap":{"t":"ptr","v":"0x0e9c9fcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9ca018"},"kids_end":{"t":"ptr","v":"0x0e9ca01c"},"kids_cap":{"t":"ptr","v":"0x0e9ca01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9ca018"},"kids_end":{"t":"ptr","v":"0x0e9ca01c"},"kids_cap":{"t":"ptr","v":"0x0e9ca01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"before":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}},"ours":{"ret":null,"side":{"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"overbudget":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9cb2e8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cb1a8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cb158"},"kids_end":{"t":"ptr","v":"0x0e9cb15c"},"kids_cap":{"t":"ptr","v":"0x0e9cb15c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9cb168"},"kids_end":{"t":"ptr","v":"0x0e9cb170"},"kids_cap":{"t":"ptr","v":"0x0e9cb170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9cb178"},"kids_end":{"t":"ptr","v":"0x0e9cb180"},"kids_cap":{"t":"ptr","v":"0x0e9cb180"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cb188"},"kids_end":{"t":"ptr","v":"0x0e9cb18c"},"kids_cap":{"t":"ptr","v":"0x0e9cb18c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9cb1b8"},"kids_end":{"t":"ptr","v":"0x0e9cb1bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9cb288"},"kids_end":{"t":"ptr","v":"0x0e9cb28c"},"kids_cap":{"t":"ptr","v":"0x0e9cb28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe8f0"},"kids_end":{"t":"ptr","v":"0x0e8fe8fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cb2d8"},"kids_end":{"t":"ptr","v":"0x0e9cb2e0"},"kids_cap":{"t":"ptr","v":"0x0e9cb2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe950"},"kids_end":{"t":"ptr","v":"0x0e8fe960"},"kids_cap":{"t":"ptr","v":"0x0e8fe960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cb1c8"},"kids_end":{"t":"ptr","v":"0x0e9cb1cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cb1d8"},"kids_end":{"t":"ptr","v":"0x0e9cb1dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fe908"},"kids_end":{"t":"ptr","v":"0x0e8fe914"},"kids_cap":{"t":"ptr","v":"0x0e8fe914"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9cb238"},"kids_end":{"t":"ptr","v":"0x0e9cb23c"},"kids_cap":{"t":"ptr","v":"0x0e9cb23c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cb1e8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9cb2f8"},"kids_end":{"t":"ptr","v":"0x0e9cb2fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb2fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe968"},"kids_end":{"t":"ptr","v":"0x0e8fe974"},"kids_cap":{"t":"ptr","v":"0x0e8fe974"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fcce8"},"kids_end":{"t":"ptr","v":"0x0e8fccf8"},"kids_cap":{"t":"ptr","v":"0x0e8fccf8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cb318"},"kids_end":{"t":"ptr","v":"0x0e9cb31c"},"kids_cap":{"t":"ptr","v":"0x0e9cb31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cb248"},"kids_end":{"t":"ptr","v":"0x0e9cb24c"},"kids_cap":{"t":"ptr","v":"0x0e9cb24c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb1f8"},"kids_end":{"t":"ptr","v":"0x0e9cb1fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb308"},"kids_end":{"t":"ptr","v":"0x0e9cb30c"},"kids_cap":{"t":"ptr","v":"0x0e9cb30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9cb268"},"kids_end":{"t":"ptr","v":"0x0e9cb270"},"kids_cap":{"t":"ptr","v":"0x0e9cb270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fcd18"},"kids_end":{"t":"ptr","v":"0x0e8fcd24"},"kids_cap":{"t":"ptr","v":"0x0e8fcd24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb208"},"kids_end":{"t":"ptr","v":"0x0e9cb210"},"kids_cap":{"t":"ptr","v":"0x0e9cb210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fcb50"},"kids_end":{"t":"ptr","v":"0x0e8fcb5c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fcad8"},"kids_end":{"t":"ptr","v":"0x0e8fcae4"},"kids_cap":{"t":"ptr","v":"0x0e8fcae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e9cb218"},"kids_end":{"t":"ptr","v":"0x0e9cb220"},"kids_cap":{"t":"ptr","v":"0x0e9cb220"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9cb328"},"kids_end":{"t":"ptr","v":"0x0e9cb32c"},"kids_cap":{"t":"ptr","v":"0x0e9cb32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cb278"},"kids_end":{"t":"ptr","v":"0x0e9cb27c"},"kids_cap":{"t":"ptr","v":"0x0e9cb27c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fcc40"},"kids_end":{"t":"ptr","v":"0x0e8fcc4c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9cb298"},"kids_end":{"t":"ptr","v":"0x0e9cb29c"},"kids_cap":{"t":"ptr","v":"0x0e9cb29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb2a8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9cb3b8"},"kids_end":{"t":"ptr","v":"0x0e9cb3bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cb358"},"kids_end":{"t":"ptr","v":"0x0e9cb35c"},"kids_cap":{"t":"ptr","v":"0x0e9cb35c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fcb68"},"kids_end":{"t":"ptr","v":"0x0e8fcb74"},"kids_cap":{"t":"ptr","v":"0x0e8fcb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9cb448"},"kids_end":{"t":"ptr","v":"0x0e9cb44c"},"kids_cap":{"t":"ptr","v":"0x0e9cb44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb408"},"kids_end":{"t":"ptr","v":"0x0e9cb40c"},"kids_cap":{"t":"ptr","v":"0x0e9cb40c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb3e8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb4a8"},"kids_end":{"t":"ptr","v":"0x0e9cb4ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb4d8"},"kids_end":{"t":"ptr","v":"0x0e9cb4dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb498"},"kids_end":{"t":"ptr","v":"0x0e9cb49c"},"kids_cap":{"t":"ptr","v":"0x0e9cb49c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9cb3f8"},"kids_end":{"t":"ptr","v":"0x0e9cb3fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fcaf0"},"kids_end":{"t":"ptr","v":"0x0e8fcafc"},"kids_cap":{"t":"ptr","v":"0x0e8fcafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fcb08"},"kids_end":{"t":"ptr","v":"0x0e8fcb14"},"kids_cap":{"t":"ptr","v":"0x0e8fcb14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb3a8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb488"},"kids_end":{"t":"ptr","v":"0x0e9cb490"},"kids_cap":{"t":"ptr","v":"0x0e9cb490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cb4c8"},"kids_end":{"t":"ptr","v":"0x0e9cb4cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88ce18"},"kids_end":{"t":"ptr","v":"0x0e88ce2c"},"kids_cap":{"t":"ptr","v":"0x0e88ce2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fcb80"},"kids_end":{"t":"ptr","v":"0x0e8fcb8c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969de0"},"kids_end":{"t":"ptr","v":"0x0e969e04"},"kids_cap":{"t":"ptr","v":"0x0e969e04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fcc28"},"kids_end":{"t":"ptr","v":"0x0e8fcc34"},"kids_cap":{"t":"ptr","v":"0x0e8fcc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[86]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921a90"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e9cb348"},"kids_end":{"t":"ptr","v":"0x0e9cb34c"},"kids_cap":{"t":"ptr","v":"0x0e9cb34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[87]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04922318"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e9cb388"},"kids_end":{"t":"ptr","v":"0x0e9cb390"},"kids_cap":{"t":"ptr","v":"0x0e9cb390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[88]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920ab8"},"tech_id":{"t":"i32","v":88},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb4b8"},"kids_end":{"t":"ptr","v":"0x0e9cb4bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9cb458"},"kids_end":{"t":"ptr","v":"0x0e9cb45c"},"kids_cap":{"t":"ptr","v":"0x0e9cb45c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb468"},"kids_end":{"t":"ptr","v":"0x0e9cb46c"},"kids_cap":{"t":"ptr","v":"0x0e9cb46c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb478"},"kids_end":{"t":"ptr","v":"0x0e9cb47c"},"kids_cap":{"t":"ptr","v":"0x0e9cb47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb3d8"},"kids_end":{"t":"ptr","v":"0x0e9cb3dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb438"},"kids_end":{"t":"ptr","v":"0x0e9cb440"},"kids_cap":{"t":"ptr","v":"0x0e9cb440"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb368"},"kids_end":{"t":"ptr","v":"0x0e9cb370"},"kids_cap":{"t":"ptr","v":"0x0e9cb370"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d378"},"kids_end":{"t":"ptr","v":"0x0e88d38c"},"kids_cap":{"t":"ptr","v":"0x0e88d38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fcb20"},"kids_end":{"t":"ptr","v":"0x0e8fcb2c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb378"},"kids_end":{"t":"ptr","v":"0x0e9cb37c"},"kids_cap":{"t":"ptr","v":"0x0e9cb37c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb398"},"kids_end":{"t":"ptr","v":"0x0e9cb39c"},"kids_cap":{"t":"ptr","v":"0x0e9cb39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9cb3c8"},"kids_end":{"t":"ptr","v":"0x0e9cb3cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9cb418"},"kids_end":{"t":"ptr","v":"0x0e9cb41c"},"kids_cap":{"t":"ptr","v":"0x0e9cb41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e9cb428"},"kids_end":{"t":"ptr","v":"0x0e9cb430"},"kids_cap":{"t":"ptr","v":"0x0e9cb430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fccd0"},"kids_end":{"t":"ptr","v":"0x0e8fccdc"},"kids_cap":{"t":"ptr","v":"0x0e8fccdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e9c95d8"},"kids_end":{"t":"ptr","v":"0x0e9c95e0"},"kids_cap":{"t":"ptr","v":"0x0e9c95e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9c9638"},"kids_end":{"t":"ptr","v":"0x0e9c9640"},"kids_cap":{"t":"ptr","v":"0x0e9c9640"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e9c9718"},"kids_end":{"t":"ptr","v":"0x0e9c971c"},"kids_cap":{"t":"ptr","v":"0x0e9c971c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fcbf8"},"kids_end":{"t":"ptr","v":"0x0e8fcc04"},"kids_cap":{"t":"ptr","v":"0x0e8fcc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fcb38"},"kids_end":{"t":"ptr","v":"0x0e8fcb44"},"kids_cap":{"t":"ptr","v":"0x0e8fcb44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fcb98"},"kids_end":{"t":"ptr","v":"0x0e8fcba8"},"kids_cap":{"t":"ptr","v":"0x0e8fcba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9c96a8"},"kids_end":{"t":"ptr","v":"0x0e9c96b0"},"kids_cap":{"t":"ptr","v":"0x0e9c96b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9c9588"},"kids_end":{"t":"ptr","v":"0x0e9c958c"},"kids_cap":{"t":"ptr","v":"0x0e9c958c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fcbe0"},"kids_end":{"t":"ptr","v":"0x0e8fcbec"},"kids_cap":{"t":"ptr","v":"0x0e8fcbec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9c96f8"},"kids_end":{"t":"ptr","v":"0x0e9c96fc"},"kids_cap":{"t":"ptr","v":"0x0e9c96fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9c9598"},"kids_end":{"t":"ptr","v":"0x0e9c959c"},"kids_cap":{"t":"ptr","v":"0x0e9c959c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e9c95e8"},"kids_end":{"t":"ptr","v":"0x0e9c95ec"},"kids_cap":{"t":"ptr","v":"0x0e9c95ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e9c96d8"},"kids_end":{"t":"ptr","v":"0x0e9c96e0"},"kids_cap":{"t":"ptr","v":"0x0e9c96e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9c9618"},"kids_end":{"t":"ptr","v":"0x0e9c961c"},"kids_cap":{"t":"ptr","v":"0x0e9c961c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9c9548"},"kids_end":{"t":"ptr","v":"0x0e9c9550"},"kids_cap":{"t":"ptr","v":"0x0e9c9550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fcd00"},"kids_end":{"t":"ptr","v":"0x0e8fcd0c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e9c95a8"},"kids_end":{"t":"ptr","v":"0x0e9c95ac"},"kids_cap":{"t":"ptr","v":"0x0e9c95ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9c9708"},"kids_end":{"t":"ptr","v":"0x0e9c9710"},"kids_cap":{"t":"ptr","v":"0x0e9c9710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e9c9558"},"kids_end":{"t":"ptr","v":"0x0e9c955c"},"kids_cap":{"t":"ptr","v":"0x0e9c955c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e9c9698"},"kids_end":{"t":"ptr","v":"0x0e9c96a0"},"kids_cap":{"t":"ptr","v":"0x0e9c96a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9c9648"},"kids_end":{"t":"ptr","v":"0x0e9c9650"},"kids_cap":{"t":"ptr","v":"0x0e9c9650"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e9c9738"},"kids_end":{"t":"ptr","v":"0x0e9c9740"},"kids_cap":{"t":"ptr","v":"0x0e9c9740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e9c9728"},"kids_end":{"t":"ptr","v":"0x0e9c9730"},"kids_cap":{"t":"ptr","v":"0x0e9c9730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e9c96b8"},"kids_end":{"t":"ptr","v":"0x0e9c96bc"},"kids_cap":{"t":"ptr","v":"0x0e9c96bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9c9568"},"kids_end":{"t":"ptr","v":"0x0e9c956c"},"kids_cap":{"t":"ptr","v":"0x0e9c956c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9c9578"},"kids_end":{"t":"ptr","v":"0x0e9c9580"},"kids_cap":{"t":"ptr","v":"0x0e9c9580"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9c95c8"},"kids_end":{"t":"ptr","v":"0x0e9c95d0"},"kids_cap":{"t":"ptr","v":"0x0e9c95d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9c95b8"},"kids_end":{"t":"ptr","v":"0x0e9c95bc"},"kids_cap":{"t":"ptr","v":"0x0e9c95bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e9c95f8"},"kids_end":{"t":"ptr","v":"0x0e9c95fc"},"kids_cap":{"t":"ptr","v":"0x0e9c95fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9c9608"},"kids_end":{"t":"ptr","v":"0x0e9c9610"},"kids_cap":{"t":"ptr","v":"0x0e9c9610"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9c9628"},"kids_end":{"t":"ptr","v":"0x0e9c962c"},"kids_cap":{"t":"ptr","v":"0x0e9c962c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e9c9658"},"kids_end":{"t":"ptr","v":"0x0e9c965c"},"kids_cap":{"t":"ptr","v":"0x0e9c965c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9c9668"},"kids_end":{"t":"ptr","v":"0x0e9c9670"},"kids_cap":{"t":"ptr","v":"0x0e9c9670"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9c9678"},"kids_end":{"t":"ptr","v":"0x0e9c967c"},"kids_cap":{"t":"ptr","v":"0x0e9c967c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e9c96c8"},"kids_end":{"t":"ptr","v":"0x0e9c96cc"},"kids_cap":{"t":"ptr","v":"0x0e9c96cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fcbb0"},"kids_end":{"t":"ptr","v":"0x0e8fcbbc"},"kids_cap":{"t":"ptr","v":"0x0e8fcbbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fcd78"},"kids_end":{"t":"ptr","v":"0x0e8fcd88"},"kids_cap":{"t":"ptr","v":"0x0e8fcd88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9c96e8"},"kids_end":{"t":"ptr","v":"0x0e9c96f0"},"kids_cap":{"t":"ptr","v":"0x0e9c96f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e9c9688"},"kids_end":{"t":"ptr","v":"0x0e9c9690"},"kids_cap":{"t":"ptr","v":"0x0e9c9690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9c98e8"},"kids_end":{"t":"ptr","v":"0x0e9c98ec"},"kids_cap":{"t":"ptr","v":"0x0e9c98ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9c97a8"},"kids_end":{"t":"ptr","v":"0x0e9c97b0"},"kids_cap":{"t":"ptr","v":"0x0e9c97b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e9c98b8"},"kids_end":{"t":"ptr","v":"0x0e9c98c0"},"kids_cap":{"t":"ptr","v":"0x0e9c98c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9c98a8"},"kids_end":{"t":"ptr","v":"0x0e9c98b0"},"kids_cap":{"t":"ptr","v":"0x0e9c98b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e9c98d8"},"kids_end":{"t":"ptr","v":"0x0e9c98dc"},"kids_cap":{"t":"ptr","v":"0x0e9c98dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e9c9748"},"kids_end":{"t":"ptr","v":"0x0e9c974c"},"kids_cap":{"t":"ptr","v":"0x0e9c974c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9c9788"},"kids_end":{"t":"ptr","v":"0x0e9c9790"},"kids_cap":{"t":"ptr","v":"0x0e9c9790"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e9c9758"},"kids_end":{"t":"ptr","v":"0x0e9c975c"},"kids_cap":{"t":"ptr","v":"0x0e9c975c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fcd60"},"kids_end":{"t":"ptr","v":"0x0e8fcd6c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9c98c8"},"kids_end":{"t":"ptr","v":"0x0e9c98cc"},"kids_cap":{"t":"ptr","v":"0x0e9c98cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d098"},"kids_end":{"t":"ptr","v":"0x0e88d0ac"},"kids_cap":{"t":"ptr","v":"0x0e88d0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e9c98f8"},"kids_end":{"t":"ptr","v":"0x0e9c98fc"},"kids_cap":{"t":"ptr","v":"0x0e9c98fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e9c9878"},"kids_end":{"t":"ptr","v":"0x0e9c987c"},"kids_cap":{"t":"ptr","v":"0x0e9c987c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e9c9838"},"kids_end":{"t":"ptr","v":"0x0e9c983c"},"kids_cap":{"t":"ptr","v":"0x0e9c983c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9c9908"},"kids_end":{"t":"ptr","v":"0x0e9c990c"},"kids_cap":{"t":"ptr","v":"0x0e9c990c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9c9818"},"kids_end":{"t":"ptr","v":"0x0e9c981c"},"kids_cap":{"t":"ptr","v":"0x0e9c981c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fcd30"},"kids_end":{"t":"ptr","v":"0x0e8fcd40"},"kids_cap":{"t":"ptr","v":"0x0e8fcd40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fcbc8"},"kids_end":{"t":"ptr","v":"0x0e8fcbd4"},"kids_cap":{"t":"ptr","v":"0x0e8fcbd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[217]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e840"},"tech_id":{"t":"i32","v":217},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9c9928"},"kids_end":{"t":"ptr","v":"0x0e9c992c"},"kids_cap":{"t":"ptr","v":"0x0e9c992c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9c97c8"},"kids_end":{"t":"ptr","v":"0x0e9c97cc"},"kids_cap":{"t":"ptr","v":"0x0e9c97cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fcc58"},"kids_end":{"t":"ptr","v":"0x0e8fcc68"},"kids_cap":{"t":"ptr","v":"0x0e8fcc68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9c9798"},"kids_end":{"t":"ptr","v":"0x0e9c97a0"},"kids_cap":{"t":"ptr","v":"0x0e9c97a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9c9938"},"kids_end":{"t":"ptr","v":"0x0e9c993c"},"kids_cap":{"t":"ptr","v":"0x0e9c993c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e9c9778"},"kids_end":{"t":"ptr","v":"0x0e9c977c"},"kids_cap":{"t":"ptr","v":"0x0e9c977c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fcd48"},"kids_end":{"t":"ptr","v":"0x0e8fcd54"},"kids_cap":{"t":"ptr","v":"0x0e8fcd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9c9768"},"kids_end":{"t":"ptr","v":"0x0e9c9770"},"kids_cap":{"t":"ptr","v":"0x0e9c9770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d398"},"kids_end":{"t":"ptr","v":"0x0e88d3ac"},"kids_cap":{"t":"ptr","v":"0x0e88d3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e9c9888"},"kids_end":{"t":"ptr","v":"0x0e9c988c"},"kids_cap":{"t":"ptr","v":"0x0e9c988c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e9c97b8"},"kids_end":{"t":"ptr","v":"0x0e9c97bc"},"kids_cap":{"t":"ptr","v":"0x0e9c97bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9c9898"},"kids_end":{"t":"ptr","v":"0x0e9c989c"},"kids_cap":{"t":"ptr","v":"0x0e9c989c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e9c97d8"},"kids_end":{"t":"ptr","v":"0x0e9c97dc"},"kids_cap":{"t":"ptr","v":"0x0e9c97dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9c97e8"},"kids_end":{"t":"ptr","v":"0x0e9c97ec"},"kids_cap":{"t":"ptr","v":"0x0e9c97ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9c97f8"},"kids_end":{"t":"ptr","v":"0x0e9c9800"},"kids_cap":{"t":"ptr","v":"0x0e9c9800"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d078"},"kids_end":{"t":"ptr","v":"0x0e88d08c"},"kids_cap":{"t":"ptr","v":"0x0e88d08c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e9c9918"},"kids_end":{"t":"ptr","v":"0x0e9c991c"},"kids_cap":{"t":"ptr","v":"0x0e9c991c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9c9848"},"kids_end":{"t":"ptr","v":"0x0e9c984c"},"kids_cap":{"t":"ptr","v":"0x0e9c984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e9c9868"},"kids_end":{"t":"ptr","v":"0x0e9c986c"},"kids_cap":{"t":"ptr","v":"0x0e9c986c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9c9808"},"kids_end":{"t":"ptr","v":"0x0e9c9810"},"kids_cap":{"t":"ptr","v":"0x0e9c9810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9c9858"},"kids_end":{"t":"ptr","v":"0x0e9c9860"},"kids_cap":{"t":"ptr","v":"0x0e9c9860"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e9c9828"},"kids_end":{"t":"ptr","v":"0x0e9c9830"},"kids_cap":{"t":"ptr","v":"0x0e9c9830"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9c9e78"},"kids_end":{"t":"ptr","v":"0x0e9c9e7c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[253]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697168"},"tech_id":{"t":"i32","v":253},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9c9e88"},"kids_end":{"t":"ptr","v":"0x0e9c9e8c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fcc10"},"kids_end":{"t":"ptr","v":"0x0e8fcc1c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fca90"},"kids_end":{"t":"ptr","v":"0x0e8fca9c"},"kids_cap":{"t":"ptr","v":"0x0e8fca9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fcc70"},"kids_end":{"t":"ptr","v":"0x0e8fcc7c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fcaa8"},"kids_end":{"t":"ptr","v":"0x0e8fcab4"},"kids_cap":{"t":"ptr","v":"0x0e8fcab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fcc88"},"kids_end":{"t":"ptr","v":"0x0e8fcc94"},"kids_cap":{"t":"ptr","v":"0x0e8fcc94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[269]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699c10"},"tech_id":{"t":"i32","v":269},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d178"},"kids_end":{"t":"ptr","v":"0x0e88d190"},"kids_cap":{"t":"ptr","v":"0x0e88d190"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":80000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9ca0c8"},"kids_end":{"t":"ptr","v":"0x0e9ca0d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca0d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9ca088"},"kids_end":{"t":"ptr","v":"0x0e9ca090"},"kids_cap":{"t":"ptr","v":"0x0e9ca090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9c9f78"},"kids_end":{"t":"ptr","v":"0x0e9c9f80"},"kids_cap":{"t":"ptr","v":"0x0e9c9f80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e9c9f98"},"kids_end":{"t":"ptr","v":"0x0e9c9fa0"},"kids_cap":{"t":"ptr","v":"0x0e9c9fa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9c9fa8"},"kids_end":{"t":"ptr","v":"0x0e9c9fac"},"kids_cap":{"t":"ptr","v":"0x0e9c9fac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9ca098"},"kids_end":{"t":"ptr","v":"0x0e9ca09c"},"kids_cap":{"t":"ptr","v":"0x0e9ca09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca0e8"},"kids_end":{"t":"ptr","v":"0x0e9ca0ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9c9fe8"},"kids_end":{"t":"ptr","v":"0x0e9c9fec"},"kids_cap":{"t":"ptr","v":"0x0e9c9fec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca128"},"kids_end":{"t":"ptr","v":"0x0e9ca12c"},"kids_cap":{"t":"ptr","v":"0x0e9ca12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca008"},"kids_end":{"t":"ptr","v":"0x0e9ca00c"},"kids_cap":{"t":"ptr","v":"0x0e9ca00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca0f8"},"kids_end":{"t":"ptr","v":"0x0e9ca0fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9ca0d8"},"kids_end":{"t":"ptr","v":"0x0e9ca0dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9ca058"},"kids_end":{"t":"ptr","v":"0x0e9ca05c"},"kids_cap":{"t":"ptr","v":"0x0e9ca05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9c9fc8"},"kids_end":{"t":"ptr","v":"0x0e9c9fcc"},"kids_cap":{"t":"ptr","v":"0x0e9c9fcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9ca018"},"kids_end":{"t":"ptr","v":"0x0e9ca01c"},"kids_cap":{"t":"ptr","v":"0x0e9ca01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["player","tree_header"],"undeclared":[],"n":0}} +{"ts":381980496,"hook":"Game::TechTree::ProcessResearch","mode":"compare","call_id":5,"thread":1412,"depth":0,"args":[{"t":"ptr","v":"0x0e93bea0","n":"tree"},{"t":"ptr","v":"0x0e90c540","n":"owner"},{"t":"i32","v":2,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e96ad78","n":"rng"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"list","v":[{"t":"struct","v":{"tech_id":{"t":"i32","v":9},"points":{"t":"i32","v":0}}}],"n":"alloc"},{"t":"i32","v":0,"n":"overbudget_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"overbudget":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9caf28"},"kids_end":{"t":"ptr","v":"0x0e9caf2c"},"kids_cap":{"t":"ptr","v":"0x0e9caf2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9caf28"},"kids_end":{"t":"ptr","v":"0x0e9caf2c"},"kids_cap":{"t":"ptr","v":"0x0e9caf2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cae68"},"kids_end":{"t":"ptr","v":"0x0e9cae6c"},"kids_cap":{"t":"ptr","v":"0x0e9cae6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cae68"},"kids_end":{"t":"ptr","v":"0x0e9cae6c"},"kids_cap":{"t":"ptr","v":"0x0e9cae6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cadf8"},"kids_end":{"t":"ptr","v":"0x0e9cadfc"},"kids_cap":{"t":"ptr","v":"0x0e9cadfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cadf8"},"kids_end":{"t":"ptr","v":"0x0e9cadfc"},"kids_cap":{"t":"ptr","v":"0x0e9cadfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9caea8"},"kids_end":{"t":"ptr","v":"0x0e9caeb0"},"kids_cap":{"t":"ptr","v":"0x0e9caeb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9caea8"},"kids_end":{"t":"ptr","v":"0x0e9caeb0"},"kids_cap":{"t":"ptr","v":"0x0e9caeb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9caf38"},"kids_end":{"t":"ptr","v":"0x0e9caf40"},"kids_cap":{"t":"ptr","v":"0x0e9caf40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9caf38"},"kids_end":{"t":"ptr","v":"0x0e9caf40"},"kids_cap":{"t":"ptr","v":"0x0e9caf40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cad68"},"kids_end":{"t":"ptr","v":"0x0e9cad6c"},"kids_cap":{"t":"ptr","v":"0x0e9cad6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cad68"},"kids_end":{"t":"ptr","v":"0x0e9cad6c"},"kids_cap":{"t":"ptr","v":"0x0e9cad6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9caeb8"},"kids_end":{"t":"ptr","v":"0x0e9caebc"},"kids_cap":{"t":"ptr","v":"0x0e9caebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9caeb8"},"kids_end":{"t":"ptr","v":"0x0e9caebc"},"kids_cap":{"t":"ptr","v":"0x0e9caebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9caef8"},"kids_end":{"t":"ptr","v":"0x0e9caefc"},"kids_cap":{"t":"ptr","v":"0x0e9caefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9caef8"},"kids_end":{"t":"ptr","v":"0x0e9caefc"},"kids_cap":{"t":"ptr","v":"0x0e9caefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe0e0"},"kids_end":{"t":"ptr","v":"0x0e8fe0ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe0e0"},"kids_end":{"t":"ptr","v":"0x0e8fe0ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cad88"},"kids_end":{"t":"ptr","v":"0x0e9cad90"},"kids_cap":{"t":"ptr","v":"0x0e9cad90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cad88"},"kids_end":{"t":"ptr","v":"0x0e9cad90"},"kids_cap":{"t":"ptr","v":"0x0e9cad90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe038"},"kids_end":{"t":"ptr","v":"0x0e8fe048"},"kids_cap":{"t":"ptr","v":"0x0e8fe048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe038"},"kids_end":{"t":"ptr","v":"0x0e8fe048"},"kids_cap":{"t":"ptr","v":"0x0e8fe048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cadb8"},"kids_end":{"t":"ptr","v":"0x0e9cadbc"},"kids_cap":{"t":"ptr","v":"0x0e9cadbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cadb8"},"kids_end":{"t":"ptr","v":"0x0e9cadbc"},"kids_cap":{"t":"ptr","v":"0x0e9cadbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cae98"},"kids_end":{"t":"ptr","v":"0x0e9cae9c"},"kids_cap":{"t":"ptr","v":"0x0e9cae9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cae98"},"kids_end":{"t":"ptr","v":"0x0e9cae9c"},"kids_cap":{"t":"ptr","v":"0x0e9cae9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fdf90"},"kids_end":{"t":"ptr","v":"0x0e8fdf9c"},"kids_cap":{"t":"ptr","v":"0x0e8fdf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fdf90"},"kids_end":{"t":"ptr","v":"0x0e8fdf9c"},"kids_cap":{"t":"ptr","v":"0x0e8fdf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9caec8"},"kids_end":{"t":"ptr","v":"0x0e9caecc"},"kids_cap":{"t":"ptr","v":"0x0e9caecc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9caec8"},"kids_end":{"t":"ptr","v":"0x0e9caecc"},"kids_cap":{"t":"ptr","v":"0x0e9caecc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cae08"},"kids_end":{"t":"ptr","v":"0x0e9cae0c"},"kids_cap":{"t":"ptr","v":"0x0e9cae0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cae08"},"kids_end":{"t":"ptr","v":"0x0e9cae0c"},"kids_cap":{"t":"ptr","v":"0x0e9cae0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9caed8"},"kids_end":{"t":"ptr","v":"0x0e9caedc"},"kids_cap":{"t":"ptr","v":"0x0e9caedc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9caed8"},"kids_end":{"t":"ptr","v":"0x0e9caedc"},"kids_cap":{"t":"ptr","v":"0x0e9caedc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fdfd8"},"kids_end":{"t":"ptr","v":"0x0e8fdfe4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fdfd8"},"kids_end":{"t":"ptr","v":"0x0e8fdfe4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe158"},"kids_end":{"t":"ptr","v":"0x0e8fe168"},"kids_cap":{"t":"ptr","v":"0x0e8fe168"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe158"},"kids_end":{"t":"ptr","v":"0x0e8fe168"},"kids_cap":{"t":"ptr","v":"0x0e8fe168"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cae18"},"kids_end":{"t":"ptr","v":"0x0e9cae1c"},"kids_cap":{"t":"ptr","v":"0x0e9cae1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cae18"},"kids_end":{"t":"ptr","v":"0x0e9cae1c"},"kids_cap":{"t":"ptr","v":"0x0e9cae1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cae28"},"kids_end":{"t":"ptr","v":"0x0e9cae2c"},"kids_cap":{"t":"ptr","v":"0x0e9cae2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cae28"},"kids_end":{"t":"ptr","v":"0x0e9cae2c"},"kids_cap":{"t":"ptr","v":"0x0e9cae2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb068"},"kids_end":{"t":"ptr","v":"0x0e9cb06c"},"kids_cap":{"t":"ptr","v":"0x0e9cb06c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb068"},"kids_end":{"t":"ptr","v":"0x0e9cb06c"},"kids_cap":{"t":"ptr","v":"0x0e9cb06c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb0d8"},"kids_end":{"t":"ptr","v":"0x0e9cb0dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb0d8"},"kids_end":{"t":"ptr","v":"0x0e9cb0dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9caf48"},"kids_end":{"t":"ptr","v":"0x0e9caf50"},"kids_cap":{"t":"ptr","v":"0x0e9caf50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9caf48"},"kids_end":{"t":"ptr","v":"0x0e9caf50"},"kids_cap":{"t":"ptr","v":"0x0e9caf50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe098"},"kids_end":{"t":"ptr","v":"0x0e8fe0a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe098"},"kids_end":{"t":"ptr","v":"0x0e8fe0a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb088"},"kids_end":{"t":"ptr","v":"0x0e9cb090"},"kids_cap":{"t":"ptr","v":"0x0e9cb090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb088"},"kids_end":{"t":"ptr","v":"0x0e9cb090"},"kids_cap":{"t":"ptr","v":"0x0e9cb090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fdfa8"},"kids_end":{"t":"ptr","v":"0x0e8fdfb4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fdfa8"},"kids_end":{"t":"ptr","v":"0x0e8fdfb4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe1a0"},"kids_end":{"t":"ptr","v":"0x0e8fe1ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe1a0"},"kids_end":{"t":"ptr","v":"0x0e8fe1ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe008"},"kids_end":{"t":"ptr","v":"0x0e8fe014"},"kids_cap":{"t":"ptr","v":"0x0e8fe014"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe008"},"kids_end":{"t":"ptr","v":"0x0e8fe014"},"kids_cap":{"t":"ptr","v":"0x0e8fe014"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9caf98"},"kids_end":{"t":"ptr","v":"0x0e9caf9c"},"kids_cap":{"t":"ptr","v":"0x0e9caf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9caf98"},"kids_end":{"t":"ptr","v":"0x0e9caf9c"},"kids_cap":{"t":"ptr","v":"0x0e9caf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cafd8"},"kids_end":{"t":"ptr","v":"0x0e9cafdc"},"kids_cap":{"t":"ptr","v":"0x0e9cafdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cafd8"},"kids_end":{"t":"ptr","v":"0x0e9cafdc"},"kids_cap":{"t":"ptr","v":"0x0e9cafdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe050"},"kids_end":{"t":"ptr","v":"0x0e8fe05c"},"kids_cap":{"t":"ptr","v":"0x0e8fe05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe050"},"kids_end":{"t":"ptr","v":"0x0e8fe05c"},"kids_cap":{"t":"ptr","v":"0x0e8fe05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9caf58"},"kids_end":{"t":"ptr","v":"0x0e9caf5c"},"kids_cap":{"t":"ptr","v":"0x0e9caf5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9caf58"},"kids_end":{"t":"ptr","v":"0x0e9caf5c"},"kids_cap":{"t":"ptr","v":"0x0e9caf5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9cb0e8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9cb0e8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb0f8"},"kids_end":{"t":"ptr","v":"0x0e9cb0fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb0f8"},"kids_end":{"t":"ptr","v":"0x0e9cb0fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9caf68"},"kids_end":{"t":"ptr","v":"0x0e9caf6c"},"kids_cap":{"t":"ptr","v":"0x0e9caf6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9caf68"},"kids_end":{"t":"ptr","v":"0x0e9caf6c"},"kids_cap":{"t":"ptr","v":"0x0e9caf6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cafc8"},"kids_end":{"t":"ptr","v":"0x0e9cafcc"},"kids_cap":{"t":"ptr","v":"0x0e9cafcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cafc8"},"kids_end":{"t":"ptr","v":"0x0e9cafcc"},"kids_cap":{"t":"ptr","v":"0x0e9cafcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe1d0"},"kids_end":{"t":"ptr","v":"0x0e8fe1dc"},"kids_cap":{"t":"ptr","v":"0x0e8fe1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe1d0"},"kids_end":{"t":"ptr","v":"0x0e8fe1dc"},"kids_cap":{"t":"ptr","v":"0x0e8fe1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9caf78"},"kids_end":{"t":"ptr","v":"0x0e9caf7c"},"kids_cap":{"t":"ptr","v":"0x0e9caf7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9caf78"},"kids_end":{"t":"ptr","v":"0x0e9caf7c"},"kids_cap":{"t":"ptr","v":"0x0e9caf7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb118"},"kids_end":{"t":"ptr","v":"0x0e9cb11c"},"kids_cap":{"t":"ptr","v":"0x0e9cb11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb118"},"kids_end":{"t":"ptr","v":"0x0e9cb11c"},"kids_cap":{"t":"ptr","v":"0x0e9cb11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb108"},"kids_end":{"t":"ptr","v":"0x0e9cb10c"},"kids_cap":{"t":"ptr","v":"0x0e9cb10c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb108"},"kids_end":{"t":"ptr","v":"0x0e9cb10c"},"kids_cap":{"t":"ptr","v":"0x0e9cb10c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb0c8"},"kids_end":{"t":"ptr","v":"0x0e9cb0cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb0c8"},"kids_end":{"t":"ptr","v":"0x0e9cb0cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb098"},"kids_end":{"t":"ptr","v":"0x0e9cb09c"},"kids_cap":{"t":"ptr","v":"0x0e9cb09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb098"},"kids_end":{"t":"ptr","v":"0x0e9cb09c"},"kids_cap":{"t":"ptr","v":"0x0e9cb09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb128"},"kids_end":{"t":"ptr","v":"0x0e9cb12c"},"kids_cap":{"t":"ptr","v":"0x0e9cb12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb128"},"kids_end":{"t":"ptr","v":"0x0e9cb12c"},"kids_cap":{"t":"ptr","v":"0x0e9cb12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9caf88"},"kids_end":{"t":"ptr","v":"0x0e9caf8c"},"kids_cap":{"t":"ptr","v":"0x0e9caf8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9caf88"},"kids_end":{"t":"ptr","v":"0x0e9caf8c"},"kids_cap":{"t":"ptr","v":"0x0e9caf8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe1b8"},"kids_end":{"t":"ptr","v":"0x0e8fe1c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe1b8"},"kids_end":{"t":"ptr","v":"0x0e8fe1c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fdfc0"},"kids_end":{"t":"ptr","v":"0x0e8fdfcc"},"kids_cap":{"t":"ptr","v":"0x0e8fdfcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fdfc0"},"kids_end":{"t":"ptr","v":"0x0e8fdfcc"},"kids_cap":{"t":"ptr","v":"0x0e8fdfcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb078"},"kids_end":{"t":"ptr","v":"0x0e9cb07c"},"kids_cap":{"t":"ptr","v":"0x0e9cb07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb078"},"kids_end":{"t":"ptr","v":"0x0e9cb07c"},"kids_cap":{"t":"ptr","v":"0x0e9cb07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb008"},"kids_end":{"t":"ptr","v":"0x0e9cb010"},"kids_cap":{"t":"ptr","v":"0x0e9cb010"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb008"},"kids_end":{"t":"ptr","v":"0x0e9cb010"},"kids_cap":{"t":"ptr","v":"0x0e9cb010"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cafa8"},"kids_end":{"t":"ptr","v":"0x0e9cafb0"},"kids_cap":{"t":"ptr","v":"0x0e9cafb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cafa8"},"kids_end":{"t":"ptr","v":"0x0e9cafb0"},"kids_cap":{"t":"ptr","v":"0x0e9cafb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88d218"},"kids_end":{"t":"ptr","v":"0x0e88d22c"},"kids_cap":{"t":"ptr","v":"0x0e88d22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88d218"},"kids_end":{"t":"ptr","v":"0x0e88d22c"},"kids_cap":{"t":"ptr","v":"0x0e88d22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fdff0"},"kids_end":{"t":"ptr","v":"0x0e8fdffc"},"kids_cap":{"t":"ptr","v":"0x0e8fdffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fdff0"},"kids_end":{"t":"ptr","v":"0x0e8fdffc"},"kids_cap":{"t":"ptr","v":"0x0e8fdffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969f00"},"kids_end":{"t":"ptr","v":"0x0e969f24"},"kids_cap":{"t":"ptr","v":"0x0e969f24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969f00"},"kids_end":{"t":"ptr","v":"0x0e969f24"},"kids_cap":{"t":"ptr","v":"0x0e969f24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9cafe8"},"kids_end":{"t":"ptr","v":"0x0e9cafec"},"kids_cap":{"t":"ptr","v":"0x0e9cafec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9cafe8"},"kids_end":{"t":"ptr","v":"0x0e9cafec"},"kids_cap":{"t":"ptr","v":"0x0e9cafec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9cafb8"},"kids_end":{"t":"ptr","v":"0x0e9cafbc"},"kids_cap":{"t":"ptr","v":"0x0e9cafbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9cafb8"},"kids_end":{"t":"ptr","v":"0x0e9cafbc"},"kids_cap":{"t":"ptr","v":"0x0e9cafbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fe110"},"kids_end":{"t":"ptr","v":"0x0e8fe11c"},"kids_cap":{"t":"ptr","v":"0x0e8fe11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fe110"},"kids_end":{"t":"ptr","v":"0x0e8fe11c"},"kids_cap":{"t":"ptr","v":"0x0e8fe11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb138"},"kids_end":{"t":"ptr","v":"0x0e9cb13c"},"kids_cap":{"t":"ptr","v":"0x0e9cb13c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb138"},"kids_end":{"t":"ptr","v":"0x0e9cb13c"},"kids_cap":{"t":"ptr","v":"0x0e9cb13c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9caff8"},"kids_end":{"t":"ptr","v":"0x0e9caffc"},"kids_cap":{"t":"ptr","v":"0x0e9caffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9caff8"},"kids_end":{"t":"ptr","v":"0x0e9caffc"},"kids_cap":{"t":"ptr","v":"0x0e9caffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb018"},"kids_end":{"t":"ptr","v":"0x0e9cb01c"},"kids_cap":{"t":"ptr","v":"0x0e9cb01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb018"},"kids_end":{"t":"ptr","v":"0x0e9cb01c"},"kids_cap":{"t":"ptr","v":"0x0e9cb01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb0a8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb0a8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb028"},"kids_end":{"t":"ptr","v":"0x0e9cb02c"},"kids_cap":{"t":"ptr","v":"0x0e9cb02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb028"},"kids_end":{"t":"ptr","v":"0x0e9cb02c"},"kids_cap":{"t":"ptr","v":"0x0e9cb02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb038"},"kids_end":{"t":"ptr","v":"0x0e9cb040"},"kids_cap":{"t":"ptr","v":"0x0e9cb040"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb038"},"kids_end":{"t":"ptr","v":"0x0e9cb040"},"kids_cap":{"t":"ptr","v":"0x0e9cb040"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb048"},"kids_end":{"t":"ptr","v":"0x0e9cb050"},"kids_cap":{"t":"ptr","v":"0x0e9cb050"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb048"},"kids_end":{"t":"ptr","v":"0x0e9cb050"},"kids_cap":{"t":"ptr","v":"0x0e9cb050"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d358"},"kids_end":{"t":"ptr","v":"0x0e88d36c"},"kids_cap":{"t":"ptr","v":"0x0e88d36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d358"},"kids_end":{"t":"ptr","v":"0x0e88d36c"},"kids_cap":{"t":"ptr","v":"0x0e88d36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe218"},"kids_end":{"t":"ptr","v":"0x0e8fe224"},"kids_cap":{"t":"ptr","v":"0x0e8fe224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe218"},"kids_end":{"t":"ptr","v":"0x0e8fe224"},"kids_cap":{"t":"ptr","v":"0x0e8fe224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb058"},"kids_end":{"t":"ptr","v":"0x0e9cb05c"},"kids_cap":{"t":"ptr","v":"0x0e9cb05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb058"},"kids_end":{"t":"ptr","v":"0x0e9cb05c"},"kids_cap":{"t":"ptr","v":"0x0e9cb05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb0b8"},"kids_end":{"t":"ptr","v":"0x0e9cb0bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb0b8"},"kids_end":{"t":"ptr","v":"0x0e9cb0bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e92edd8"},"kids_end":{"t":"ptr","v":"0x0e92eddc"},"kids_cap":{"t":"ptr","v":"0x0e92eddc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e92edd8"},"kids_end":{"t":"ptr","v":"0x0e92eddc"},"kids_cap":{"t":"ptr","v":"0x0e92eddc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e92ed78"},"kids_end":{"t":"ptr","v":"0x0e92ed7c"},"kids_cap":{"t":"ptr","v":"0x0e92ed7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e92ed78"},"kids_end":{"t":"ptr","v":"0x0e92ed7c"},"kids_cap":{"t":"ptr","v":"0x0e92ed7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e92ede8"},"kids_end":{"t":"ptr","v":"0x0e92edf0"},"kids_cap":{"t":"ptr","v":"0x0e92edf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e92ede8"},"kids_end":{"t":"ptr","v":"0x0e92edf0"},"kids_cap":{"t":"ptr","v":"0x0e92edf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe020"},"kids_end":{"t":"ptr","v":"0x0e8fe02c"},"kids_cap":{"t":"ptr","v":"0x0e8fe02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe020"},"kids_end":{"t":"ptr","v":"0x0e8fe02c"},"kids_cap":{"t":"ptr","v":"0x0e8fe02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e92edb8"},"kids_end":{"t":"ptr","v":"0x0e92edc0"},"kids_cap":{"t":"ptr","v":"0x0e92edc0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e92edb8"},"kids_end":{"t":"ptr","v":"0x0e92edc0"},"kids_cap":{"t":"ptr","v":"0x0e92edc0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e92ee48"},"kids_end":{"t":"ptr","v":"0x0e92ee50"},"kids_cap":{"t":"ptr","v":"0x0e92ee50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e92ee48"},"kids_end":{"t":"ptr","v":"0x0e92ee50"},"kids_cap":{"t":"ptr","v":"0x0e92ee50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e92eeb8"},"kids_end":{"t":"ptr","v":"0x0e92eebc"},"kids_cap":{"t":"ptr","v":"0x0e92eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e92eeb8"},"kids_end":{"t":"ptr","v":"0x0e92eebc"},"kids_cap":{"t":"ptr","v":"0x0e92eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe0c8"},"kids_end":{"t":"ptr","v":"0x0e8fe0d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe0c8"},"kids_end":{"t":"ptr","v":"0x0e8fe0d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fe0f8"},"kids_end":{"t":"ptr","v":"0x0e8fe104"},"kids_cap":{"t":"ptr","v":"0x0e8fe104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fe0f8"},"kids_end":{"t":"ptr","v":"0x0e8fe104"},"kids_cap":{"t":"ptr","v":"0x0e8fe104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe350"},"kids_end":{"t":"ptr","v":"0x0e8fe360"},"kids_cap":{"t":"ptr","v":"0x0e8fe360"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe350"},"kids_end":{"t":"ptr","v":"0x0e8fe360"},"kids_cap":{"t":"ptr","v":"0x0e8fe360"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e92eec8"},"kids_end":{"t":"ptr","v":"0x0e92eed0"},"kids_cap":{"t":"ptr","v":"0x0e92eed0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e92eec8"},"kids_end":{"t":"ptr","v":"0x0e92eed0"},"kids_cap":{"t":"ptr","v":"0x0e92eed0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e92ee18"},"kids_end":{"t":"ptr","v":"0x0e92ee1c"},"kids_cap":{"t":"ptr","v":"0x0e92ee1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e92ee18"},"kids_end":{"t":"ptr","v":"0x0e92ee1c"},"kids_cap":{"t":"ptr","v":"0x0e92ee1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe380"},"kids_end":{"t":"ptr","v":"0x0e8fe38c"},"kids_cap":{"t":"ptr","v":"0x0e8fe38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe380"},"kids_end":{"t":"ptr","v":"0x0e8fe38c"},"kids_cap":{"t":"ptr","v":"0x0e8fe38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e92ee58"},"kids_end":{"t":"ptr","v":"0x0e92ee5c"},"kids_cap":{"t":"ptr","v":"0x0e92ee5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e92ee58"},"kids_end":{"t":"ptr","v":"0x0e92ee5c"},"kids_cap":{"t":"ptr","v":"0x0e92ee5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e92edc8"},"kids_end":{"t":"ptr","v":"0x0e92edcc"},"kids_cap":{"t":"ptr","v":"0x0e92edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e92edc8"},"kids_end":{"t":"ptr","v":"0x0e92edcc"},"kids_cap":{"t":"ptr","v":"0x0e92edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e92ee28"},"kids_end":{"t":"ptr","v":"0x0e92ee2c"},"kids_cap":{"t":"ptr","v":"0x0e92ee2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e92ee28"},"kids_end":{"t":"ptr","v":"0x0e92ee2c"},"kids_cap":{"t":"ptr","v":"0x0e92ee2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e92ece8"},"kids_end":{"t":"ptr","v":"0x0e92ecec"},"kids_cap":{"t":"ptr","v":"0x0e92ecec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e92ece8"},"kids_end":{"t":"ptr","v":"0x0e92ecec"},"kids_cap":{"t":"ptr","v":"0x0e92ecec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe3e0"},"kids_end":{"t":"ptr","v":"0x0e8fe3ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe3e0"},"kids_end":{"t":"ptr","v":"0x0e8fe3ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e92ed38"},"kids_end":{"t":"ptr","v":"0x0e92ed3c"},"kids_cap":{"t":"ptr","v":"0x0e92ed3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e92ed38"},"kids_end":{"t":"ptr","v":"0x0e92ed3c"},"kids_cap":{"t":"ptr","v":"0x0e92ed3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e92ed58"},"kids_end":{"t":"ptr","v":"0x0e92ed60"},"kids_cap":{"t":"ptr","v":"0x0e92ed60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e92ed58"},"kids_end":{"t":"ptr","v":"0x0e92ed60"},"kids_cap":{"t":"ptr","v":"0x0e92ed60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fe6f8"},"kids_end":{"t":"ptr","v":"0x0e8fe704"},"kids_cap":{"t":"ptr","v":"0x0e8fe704"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fe6f8"},"kids_end":{"t":"ptr","v":"0x0e8fe704"},"kids_cap":{"t":"ptr","v":"0x0e8fe704"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e92edf8"},"kids_end":{"t":"ptr","v":"0x0e92edfc"},"kids_cap":{"t":"ptr","v":"0x0e92edfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e92edf8"},"kids_end":{"t":"ptr","v":"0x0e92edfc"},"kids_cap":{"t":"ptr","v":"0x0e92edfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e92ee38"},"kids_end":{"t":"ptr","v":"0x0e92ee40"},"kids_cap":{"t":"ptr","v":"0x0e92ee40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e92ee38"},"kids_end":{"t":"ptr","v":"0x0e92ee40"},"kids_cap":{"t":"ptr","v":"0x0e92ee40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e92ee08"},"kids_end":{"t":"ptr","v":"0x0e92ee0c"},"kids_cap":{"t":"ptr","v":"0x0e92ee0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e92ee08"},"kids_end":{"t":"ptr","v":"0x0e92ee0c"},"kids_cap":{"t":"ptr","v":"0x0e92ee0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e92ee68"},"kids_end":{"t":"ptr","v":"0x0e92ee70"},"kids_cap":{"t":"ptr","v":"0x0e92ee70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e92ee68"},"kids_end":{"t":"ptr","v":"0x0e92ee70"},"kids_cap":{"t":"ptr","v":"0x0e92ee70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e92ee78"},"kids_end":{"t":"ptr","v":"0x0e92ee80"},"kids_cap":{"t":"ptr","v":"0x0e92ee80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e92ee78"},"kids_end":{"t":"ptr","v":"0x0e92ee80"},"kids_cap":{"t":"ptr","v":"0x0e92ee80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e92ed48"},"kids_end":{"t":"ptr","v":"0x0e92ed50"},"kids_cap":{"t":"ptr","v":"0x0e92ed50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e92ed48"},"kids_end":{"t":"ptr","v":"0x0e92ed50"},"kids_cap":{"t":"ptr","v":"0x0e92ed50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e92eed8"},"kids_end":{"t":"ptr","v":"0x0e92eee0"},"kids_cap":{"t":"ptr","v":"0x0e92eee0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e92eed8"},"kids_end":{"t":"ptr","v":"0x0e92eee0"},"kids_cap":{"t":"ptr","v":"0x0e92eee0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e92ed88"},"kids_end":{"t":"ptr","v":"0x0e92ed8c"},"kids_cap":{"t":"ptr","v":"0x0e92ed8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e92ed88"},"kids_end":{"t":"ptr","v":"0x0e92ed8c"},"kids_cap":{"t":"ptr","v":"0x0e92ed8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e92ed68"},"kids_end":{"t":"ptr","v":"0x0e92ed6c"},"kids_cap":{"t":"ptr","v":"0x0e92ed6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e92ed68"},"kids_end":{"t":"ptr","v":"0x0e92ed6c"},"kids_cap":{"t":"ptr","v":"0x0e92ed6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e92ecf8"},"kids_end":{"t":"ptr","v":"0x0e92ed00"},"kids_cap":{"t":"ptr","v":"0x0e92ed00"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e92ecf8"},"kids_end":{"t":"ptr","v":"0x0e92ed00"},"kids_cap":{"t":"ptr","v":"0x0e92ed00"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e92ed08"},"kids_end":{"t":"ptr","v":"0x0e92ed10"},"kids_cap":{"t":"ptr","v":"0x0e92ed10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e92ed08"},"kids_end":{"t":"ptr","v":"0x0e92ed10"},"kids_cap":{"t":"ptr","v":"0x0e92ed10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e92ee98"},"kids_end":{"t":"ptr","v":"0x0e92ee9c"},"kids_cap":{"t":"ptr","v":"0x0e92ee9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e92ee98"},"kids_end":{"t":"ptr","v":"0x0e92ee9c"},"kids_cap":{"t":"ptr","v":"0x0e92ee9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e92ed18"},"kids_end":{"t":"ptr","v":"0x0e92ed1c"},"kids_cap":{"t":"ptr","v":"0x0e92ed1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e92ed18"},"kids_end":{"t":"ptr","v":"0x0e92ed1c"},"kids_cap":{"t":"ptr","v":"0x0e92ed1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e92ee88"},"kids_end":{"t":"ptr","v":"0x0e92ee90"},"kids_cap":{"t":"ptr","v":"0x0e92ee90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e92ee88"},"kids_end":{"t":"ptr","v":"0x0e92ee90"},"kids_cap":{"t":"ptr","v":"0x0e92ee90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e92eea8"},"kids_end":{"t":"ptr","v":"0x0e92eeac"},"kids_cap":{"t":"ptr","v":"0x0e92eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e92eea8"},"kids_end":{"t":"ptr","v":"0x0e92eeac"},"kids_cap":{"t":"ptr","v":"0x0e92eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e92ed28"},"kids_end":{"t":"ptr","v":"0x0e92ed2c"},"kids_cap":{"t":"ptr","v":"0x0e92ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e92ed28"},"kids_end":{"t":"ptr","v":"0x0e92ed2c"},"kids_cap":{"t":"ptr","v":"0x0e92ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e92ed98"},"kids_end":{"t":"ptr","v":"0x0e92eda0"},"kids_cap":{"t":"ptr","v":"0x0e92eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e92ed98"},"kids_end":{"t":"ptr","v":"0x0e92eda0"},"kids_cap":{"t":"ptr","v":"0x0e92eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e92eda8"},"kids_end":{"t":"ptr","v":"0x0e92edac"},"kids_cap":{"t":"ptr","v":"0x0e92edac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e92eda8"},"kids_end":{"t":"ptr","v":"0x0e92edac"},"kids_cap":{"t":"ptr","v":"0x0e92edac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e92f7a8"},"kids_end":{"t":"ptr","v":"0x0e92f7ac"},"kids_cap":{"t":"ptr","v":"0x0e92f7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e92f7a8"},"kids_end":{"t":"ptr","v":"0x0e92f7ac"},"kids_cap":{"t":"ptr","v":"0x0e92f7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fe6c8"},"kids_end":{"t":"ptr","v":"0x0e8fe6d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fe6c8"},"kids_end":{"t":"ptr","v":"0x0e8fe6d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fe620"},"kids_end":{"t":"ptr","v":"0x0e8fe630"},"kids_cap":{"t":"ptr","v":"0x0e8fe630"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fe620"},"kids_end":{"t":"ptr","v":"0x0e8fe630"},"kids_cap":{"t":"ptr","v":"0x0e8fe630"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e92f6e8"},"kids_end":{"t":"ptr","v":"0x0e92f6f0"},"kids_cap":{"t":"ptr","v":"0x0e92f6f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e92f6e8"},"kids_end":{"t":"ptr","v":"0x0e92f6f0"},"kids_cap":{"t":"ptr","v":"0x0e92f6f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e92f7b8"},"kids_end":{"t":"ptr","v":"0x0e92f7c0"},"kids_cap":{"t":"ptr","v":"0x0e92f7c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e92f7b8"},"kids_end":{"t":"ptr","v":"0x0e92f7c0"},"kids_cap":{"t":"ptr","v":"0x0e92f7c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e92f818"},"kids_end":{"t":"ptr","v":"0x0e92f81c"},"kids_cap":{"t":"ptr","v":"0x0e92f81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e92f818"},"kids_end":{"t":"ptr","v":"0x0e92f81c"},"kids_cap":{"t":"ptr","v":"0x0e92f81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e92f6f8"},"kids_end":{"t":"ptr","v":"0x0e92f700"},"kids_cap":{"t":"ptr","v":"0x0e92f700"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e92f6f8"},"kids_end":{"t":"ptr","v":"0x0e92f700"},"kids_cap":{"t":"ptr","v":"0x0e92f700"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e92f7d8"},"kids_end":{"t":"ptr","v":"0x0e92f7e0"},"kids_cap":{"t":"ptr","v":"0x0e92f7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e92f7d8"},"kids_end":{"t":"ptr","v":"0x0e92f7e0"},"kids_cap":{"t":"ptr","v":"0x0e92f7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e92f708"},"kids_end":{"t":"ptr","v":"0x0e92f710"},"kids_cap":{"t":"ptr","v":"0x0e92f710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e92f708"},"kids_end":{"t":"ptr","v":"0x0e92f710"},"kids_cap":{"t":"ptr","v":"0x0e92f710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e92f7e8"},"kids_end":{"t":"ptr","v":"0x0e92f7ec"},"kids_cap":{"t":"ptr","v":"0x0e92f7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e92f7e8"},"kids_end":{"t":"ptr","v":"0x0e92f7ec"},"kids_cap":{"t":"ptr","v":"0x0e92f7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e92f7f8"},"kids_end":{"t":"ptr","v":"0x0e92f7fc"},"kids_cap":{"t":"ptr","v":"0x0e92f7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e92f7f8"},"kids_end":{"t":"ptr","v":"0x0e92f7fc"},"kids_cap":{"t":"ptr","v":"0x0e92f7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e92f808"},"kids_end":{"t":"ptr","v":"0x0e92f810"},"kids_cap":{"t":"ptr","v":"0x0e92f810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e92f808"},"kids_end":{"t":"ptr","v":"0x0e92f810"},"kids_cap":{"t":"ptr","v":"0x0e92f810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e92fa68"},"kids_end":{"t":"ptr","v":"0x0e92fa6c"},"kids_cap":{"t":"ptr","v":"0x0e92fa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e92fa68"},"kids_end":{"t":"ptr","v":"0x0e92fa6c"},"kids_cap":{"t":"ptr","v":"0x0e92fa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe728"},"kids_end":{"t":"ptr","v":"0x0e8fe734"},"kids_cap":{"t":"ptr","v":"0x0e8fe734"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe728"},"kids_end":{"t":"ptr","v":"0x0e8fe734"},"kids_cap":{"t":"ptr","v":"0x0e8fe734"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e92f908"},"kids_end":{"t":"ptr","v":"0x0e92f90c"},"kids_cap":{"t":"ptr","v":"0x0e92f90c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e92f908"},"kids_end":{"t":"ptr","v":"0x0e92f90c"},"kids_cap":{"t":"ptr","v":"0x0e92f90c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d258"},"kids_end":{"t":"ptr","v":"0x0e88d26c"},"kids_cap":{"t":"ptr","v":"0x0e88d26c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d258"},"kids_end":{"t":"ptr","v":"0x0e88d26c"},"kids_cap":{"t":"ptr","v":"0x0e88d26c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e92faa8"},"kids_end":{"t":"ptr","v":"0x0e92faac"},"kids_cap":{"t":"ptr","v":"0x0e92faac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e92faa8"},"kids_end":{"t":"ptr","v":"0x0e92faac"},"kids_cap":{"t":"ptr","v":"0x0e92faac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e92f938"},"kids_end":{"t":"ptr","v":"0x0e92f93c"},"kids_cap":{"t":"ptr","v":"0x0e92f93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e92f938"},"kids_end":{"t":"ptr","v":"0x0e92f93c"},"kids_cap":{"t":"ptr","v":"0x0e92f93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e92f988"},"kids_end":{"t":"ptr","v":"0x0e92f98c"},"kids_cap":{"t":"ptr","v":"0x0e92f98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e92f988"},"kids_end":{"t":"ptr","v":"0x0e92f98c"},"kids_cap":{"t":"ptr","v":"0x0e92f98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e92f9f8"},"kids_end":{"t":"ptr","v":"0x0e92f9fc"},"kids_cap":{"t":"ptr","v":"0x0e92f9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e92f9f8"},"kids_end":{"t":"ptr","v":"0x0e92f9fc"},"kids_cap":{"t":"ptr","v":"0x0e92f9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9309f8"},"kids_end":{"t":"ptr","v":"0x0e9309fc"},"kids_cap":{"t":"ptr","v":"0x0e9309fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9309f8"},"kids_end":{"t":"ptr","v":"0x0e9309fc"},"kids_cap":{"t":"ptr","v":"0x0e9309fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe740"},"kids_end":{"t":"ptr","v":"0x0e8fe750"},"kids_cap":{"t":"ptr","v":"0x0e8fe750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe740"},"kids_end":{"t":"ptr","v":"0x0e8fe750"},"kids_cap":{"t":"ptr","v":"0x0e8fe750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fe638"},"kids_end":{"t":"ptr","v":"0x0e8fe644"},"kids_cap":{"t":"ptr","v":"0x0e8fe644"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fe638"},"kids_end":{"t":"ptr","v":"0x0e8fe644"},"kids_cap":{"t":"ptr","v":"0x0e8fe644"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e930908"},"kids_end":{"t":"ptr","v":"0x0e93090c"},"kids_cap":{"t":"ptr","v":"0x0e93090c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e930908"},"kids_end":{"t":"ptr","v":"0x0e93090c"},"kids_cap":{"t":"ptr","v":"0x0e93090c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9309a8"},"kids_end":{"t":"ptr","v":"0x0e9309ac"},"kids_cap":{"t":"ptr","v":"0x0e9309ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9309a8"},"kids_end":{"t":"ptr","v":"0x0e9309ac"},"kids_cap":{"t":"ptr","v":"0x0e9309ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe7e8"},"kids_end":{"t":"ptr","v":"0x0e8fe7f8"},"kids_cap":{"t":"ptr","v":"0x0e8fe7f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe7e8"},"kids_end":{"t":"ptr","v":"0x0e8fe7f8"},"kids_cap":{"t":"ptr","v":"0x0e8fe7f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9308e8"},"kids_end":{"t":"ptr","v":"0x0e9308f0"},"kids_cap":{"t":"ptr","v":"0x0e9308f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9308e8"},"kids_end":{"t":"ptr","v":"0x0e9308f0"},"kids_cap":{"t":"ptr","v":"0x0e9308f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e930968"},"kids_end":{"t":"ptr","v":"0x0e93096c"},"kids_cap":{"t":"ptr","v":"0x0e93096c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e930968"},"kids_end":{"t":"ptr","v":"0x0e93096c"},"kids_cap":{"t":"ptr","v":"0x0e93096c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e930978"},"kids_end":{"t":"ptr","v":"0x0e93097c"},"kids_cap":{"t":"ptr","v":"0x0e93097c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e930978"},"kids_end":{"t":"ptr","v":"0x0e93097c"},"kids_cap":{"t":"ptr","v":"0x0e93097c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fe758"},"kids_end":{"t":"ptr","v":"0x0e8fe764"},"kids_cap":{"t":"ptr","v":"0x0e8fe764"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fe758"},"kids_end":{"t":"ptr","v":"0x0e8fe764"},"kids_cap":{"t":"ptr","v":"0x0e8fe764"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9308f8"},"kids_end":{"t":"ptr","v":"0x0e930900"},"kids_cap":{"t":"ptr","v":"0x0e930900"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9308f8"},"kids_end":{"t":"ptr","v":"0x0e930900"},"kids_cap":{"t":"ptr","v":"0x0e930900"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d0b8"},"kids_end":{"t":"ptr","v":"0x0e88d0cc"},"kids_cap":{"t":"ptr","v":"0x0e88d0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d0b8"},"kids_end":{"t":"ptr","v":"0x0e88d0cc"},"kids_cap":{"t":"ptr","v":"0x0e88d0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e930918"},"kids_end":{"t":"ptr","v":"0x0e93091c"},"kids_cap":{"t":"ptr","v":"0x0e93091c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e930918"},"kids_end":{"t":"ptr","v":"0x0e93091c"},"kids_cap":{"t":"ptr","v":"0x0e93091c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e930988"},"kids_end":{"t":"ptr","v":"0x0e93098c"},"kids_cap":{"t":"ptr","v":"0x0e93098c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e930988"},"kids_end":{"t":"ptr","v":"0x0e93098c"},"kids_cap":{"t":"ptr","v":"0x0e93098c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9309d8"},"kids_end":{"t":"ptr","v":"0x0e9309dc"},"kids_cap":{"t":"ptr","v":"0x0e9309dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9309d8"},"kids_end":{"t":"ptr","v":"0x0e9309dc"},"kids_cap":{"t":"ptr","v":"0x0e9309dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e930998"},"kids_end":{"t":"ptr","v":"0x0e93099c"},"kids_cap":{"t":"ptr","v":"0x0e93099c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e930998"},"kids_end":{"t":"ptr","v":"0x0e93099c"},"kids_cap":{"t":"ptr","v":"0x0e93099c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9309b8"},"kids_end":{"t":"ptr","v":"0x0e9309bc"},"kids_cap":{"t":"ptr","v":"0x0e9309bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9309b8"},"kids_end":{"t":"ptr","v":"0x0e9309bc"},"kids_cap":{"t":"ptr","v":"0x0e9309bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e92eb48"},"kids_end":{"t":"ptr","v":"0x0e92eb50"},"kids_cap":{"t":"ptr","v":"0x0e92eb50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e92eb48"},"kids_end":{"t":"ptr","v":"0x0e92eb50"},"kids_cap":{"t":"ptr","v":"0x0e92eb50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d1b8"},"kids_end":{"t":"ptr","v":"0x0e88d1cc"},"kids_cap":{"t":"ptr","v":"0x0e88d1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d1b8"},"kids_end":{"t":"ptr","v":"0x0e88d1cc"},"kids_cap":{"t":"ptr","v":"0x0e88d1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e92ecb8"},"kids_end":{"t":"ptr","v":"0x0e92ecbc"},"kids_cap":{"t":"ptr","v":"0x0e92ecbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e92ecb8"},"kids_end":{"t":"ptr","v":"0x0e92ecbc"},"kids_cap":{"t":"ptr","v":"0x0e92ecbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e92eb68"},"kids_end":{"t":"ptr","v":"0x0e92eb6c"},"kids_cap":{"t":"ptr","v":"0x0e92eb6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e92eb68"},"kids_end":{"t":"ptr","v":"0x0e92eb6c"},"kids_cap":{"t":"ptr","v":"0x0e92eb6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e92ebd8"},"kids_end":{"t":"ptr","v":"0x0e92ebdc"},"kids_cap":{"t":"ptr","v":"0x0e92ebdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e92ebd8"},"kids_end":{"t":"ptr","v":"0x0e92ebdc"},"kids_cap":{"t":"ptr","v":"0x0e92ebdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e92eb18"},"kids_end":{"t":"ptr","v":"0x0e92eb20"},"kids_cap":{"t":"ptr","v":"0x0e92eb20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e92eb18"},"kids_end":{"t":"ptr","v":"0x0e92eb20"},"kids_cap":{"t":"ptr","v":"0x0e92eb20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e92eb78"},"kids_end":{"t":"ptr","v":"0x0e92eb80"},"kids_cap":{"t":"ptr","v":"0x0e92eb80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e92eb78"},"kids_end":{"t":"ptr","v":"0x0e92eb80"},"kids_cap":{"t":"ptr","v":"0x0e92eb80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e92ec98"},"kids_end":{"t":"ptr","v":"0x0e92eca0"},"kids_cap":{"t":"ptr","v":"0x0e92eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e92ec98"},"kids_end":{"t":"ptr","v":"0x0e92eca0"},"kids_cap":{"t":"ptr","v":"0x0e92eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e92eb58"},"kids_end":{"t":"ptr","v":"0x0e92eb5c"},"kids_cap":{"t":"ptr","v":"0x0e92eb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e92eb58"},"kids_end":{"t":"ptr","v":"0x0e92eb5c"},"kids_cap":{"t":"ptr","v":"0x0e92eb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e92eca8"},"kids_end":{"t":"ptr","v":"0x0e92ecac"},"kids_cap":{"t":"ptr","v":"0x0e92ecac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e92eca8"},"kids_end":{"t":"ptr","v":"0x0e92ecac"},"kids_cap":{"t":"ptr","v":"0x0e92ecac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe5c0"},"kids_end":{"t":"ptr","v":"0x0e8fe5cc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe5c0"},"kids_end":{"t":"ptr","v":"0x0e8fe5cc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe800"},"kids_end":{"t":"ptr","v":"0x0e8fe80c"},"kids_cap":{"t":"ptr","v":"0x0e8fe80c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe800"},"kids_end":{"t":"ptr","v":"0x0e8fe80c"},"kids_cap":{"t":"ptr","v":"0x0e8fe80c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe770"},"kids_end":{"t":"ptr","v":"0x0e8fe77c"},"kids_cap":{"t":"ptr","v":"0x0e8fe77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe770"},"kids_end":{"t":"ptr","v":"0x0e8fe77c"},"kids_cap":{"t":"ptr","v":"0x0e8fe77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe7a0"},"kids_end":{"t":"ptr","v":"0x0e8fe7ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe7a0"},"kids_end":{"t":"ptr","v":"0x0e8fe7ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe818"},"kids_end":{"t":"ptr","v":"0x0e8fe824"},"kids_cap":{"t":"ptr","v":"0x0e8fe824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe818"},"kids_end":{"t":"ptr","v":"0x0e8fe824"},"kids_cap":{"t":"ptr","v":"0x0e8fe824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d1f8"},"kids_end":{"t":"ptr","v":"0x0e88d210"},"kids_cap":{"t":"ptr","v":"0x0e88d210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d1f8"},"kids_end":{"t":"ptr","v":"0x0e88d210"},"kids_cap":{"t":"ptr","v":"0x0e88d210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e92ec28"},"kids_end":{"t":"ptr","v":"0x0e92ec30"},"kids_cap":{"t":"ptr","v":"0x0e92ec30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e92ec28"},"kids_end":{"t":"ptr","v":"0x0e92ec30"},"kids_cap":{"t":"ptr","v":"0x0e92ec30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e92ec68"},"kids_end":{"t":"ptr","v":"0x0e92ec70"},"kids_cap":{"t":"ptr","v":"0x0e92ec70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e92ec68"},"kids_end":{"t":"ptr","v":"0x0e92ec70"},"kids_cap":{"t":"ptr","v":"0x0e92ec70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e92eba8"},"kids_end":{"t":"ptr","v":"0x0e92ebb0"},"kids_cap":{"t":"ptr","v":"0x0e92ebb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e92eba8"},"kids_end":{"t":"ptr","v":"0x0e92ebb0"},"kids_cap":{"t":"ptr","v":"0x0e92ebb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e92ec18"},"kids_end":{"t":"ptr","v":"0x0e92ec20"},"kids_cap":{"t":"ptr","v":"0x0e92ec20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e92ec18"},"kids_end":{"t":"ptr","v":"0x0e92ec20"},"kids_cap":{"t":"ptr","v":"0x0e92ec20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e92eae8"},"kids_end":{"t":"ptr","v":"0x0e92eaec"},"kids_cap":{"t":"ptr","v":"0x0e92eaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e92eae8"},"kids_end":{"t":"ptr","v":"0x0e92eaec"},"kids_cap":{"t":"ptr","v":"0x0e92eaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e92ec58"},"kids_end":{"t":"ptr","v":"0x0e92ec5c"},"kids_cap":{"t":"ptr","v":"0x0e92ec5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e92ec58"},"kids_end":{"t":"ptr","v":"0x0e92ec5c"},"kids_cap":{"t":"ptr","v":"0x0e92ec5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e92ec08"},"kids_end":{"t":"ptr","v":"0x0e92ec0c"},"kids_cap":{"t":"ptr","v":"0x0e92ec0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e92ec08"},"kids_end":{"t":"ptr","v":"0x0e92ec0c"},"kids_cap":{"t":"ptr","v":"0x0e92ec0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e92ecc8"},"kids_end":{"t":"ptr","v":"0x0e92eccc"},"kids_cap":{"t":"ptr","v":"0x0e92eccc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e92ecc8"},"kids_end":{"t":"ptr","v":"0x0e92eccc"},"kids_cap":{"t":"ptr","v":"0x0e92eccc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e92ecd8"},"kids_end":{"t":"ptr","v":"0x0e92ecdc"},"kids_cap":{"t":"ptr","v":"0x0e92ecdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e92ecd8"},"kids_end":{"t":"ptr","v":"0x0e92ecdc"},"kids_cap":{"t":"ptr","v":"0x0e92ecdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e92eb88"},"kids_end":{"t":"ptr","v":"0x0e92eb8c"},"kids_cap":{"t":"ptr","v":"0x0e92eb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e92eb88"},"kids_end":{"t":"ptr","v":"0x0e92eb8c"},"kids_cap":{"t":"ptr","v":"0x0e92eb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e92ebb8"},"kids_end":{"t":"ptr","v":"0x0e92ebbc"},"kids_cap":{"t":"ptr","v":"0x0e92ebbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e92ebb8"},"kids_end":{"t":"ptr","v":"0x0e92ebbc"},"kids_cap":{"t":"ptr","v":"0x0e92ebbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e92eaf8"},"kids_end":{"t":"ptr","v":"0x0e92eafc"},"kids_cap":{"t":"ptr","v":"0x0e92eafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e92eaf8"},"kids_end":{"t":"ptr","v":"0x0e92eafc"},"kids_cap":{"t":"ptr","v":"0x0e92eafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e92eb98"},"kids_end":{"t":"ptr","v":"0x0e92eb9c"},"kids_cap":{"t":"ptr","v":"0x0e92eb9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e92eb98"},"kids_end":{"t":"ptr","v":"0x0e92eb9c"},"kids_cap":{"t":"ptr","v":"0x0e92eb9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e92ebe8"},"kids_end":{"t":"ptr","v":"0x0e92ebec"},"kids_cap":{"t":"ptr","v":"0x0e92ebec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e92ebe8"},"kids_end":{"t":"ptr","v":"0x0e92ebec"},"kids_cap":{"t":"ptr","v":"0x0e92ebec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e92eb08"},"kids_end":{"t":"ptr","v":"0x0e92eb0c"},"kids_cap":{"t":"ptr","v":"0x0e92eb0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e92eb08"},"kids_end":{"t":"ptr","v":"0x0e92eb0c"},"kids_cap":{"t":"ptr","v":"0x0e92eb0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"before":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}},"ours":{"ret":null,"side":{"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"overbudget":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9caf28"},"kids_end":{"t":"ptr","v":"0x0e9caf2c"},"kids_cap":{"t":"ptr","v":"0x0e9caf2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cae68"},"kids_end":{"t":"ptr","v":"0x0e9cae6c"},"kids_cap":{"t":"ptr","v":"0x0e9cae6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cadf8"},"kids_end":{"t":"ptr","v":"0x0e9cadfc"},"kids_cap":{"t":"ptr","v":"0x0e9cadfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9caea8"},"kids_end":{"t":"ptr","v":"0x0e9caeb0"},"kids_cap":{"t":"ptr","v":"0x0e9caeb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9caf38"},"kids_end":{"t":"ptr","v":"0x0e9caf40"},"kids_cap":{"t":"ptr","v":"0x0e9caf40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cad68"},"kids_end":{"t":"ptr","v":"0x0e9cad6c"},"kids_cap":{"t":"ptr","v":"0x0e9cad6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9caeb8"},"kids_end":{"t":"ptr","v":"0x0e9caebc"},"kids_cap":{"t":"ptr","v":"0x0e9caebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9caef8"},"kids_end":{"t":"ptr","v":"0x0e9caefc"},"kids_cap":{"t":"ptr","v":"0x0e9caefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe0e0"},"kids_end":{"t":"ptr","v":"0x0e8fe0ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cad88"},"kids_end":{"t":"ptr","v":"0x0e9cad90"},"kids_cap":{"t":"ptr","v":"0x0e9cad90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe038"},"kids_end":{"t":"ptr","v":"0x0e8fe048"},"kids_cap":{"t":"ptr","v":"0x0e8fe048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cadb8"},"kids_end":{"t":"ptr","v":"0x0e9cadbc"},"kids_cap":{"t":"ptr","v":"0x0e9cadbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cae98"},"kids_end":{"t":"ptr","v":"0x0e9cae9c"},"kids_cap":{"t":"ptr","v":"0x0e9cae9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fdf90"},"kids_end":{"t":"ptr","v":"0x0e8fdf9c"},"kids_cap":{"t":"ptr","v":"0x0e8fdf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9caec8"},"kids_end":{"t":"ptr","v":"0x0e9caecc"},"kids_cap":{"t":"ptr","v":"0x0e9caecc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cae08"},"kids_end":{"t":"ptr","v":"0x0e9cae0c"},"kids_cap":{"t":"ptr","v":"0x0e9cae0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9caed8"},"kids_end":{"t":"ptr","v":"0x0e9caedc"},"kids_cap":{"t":"ptr","v":"0x0e9caedc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fdfd8"},"kids_end":{"t":"ptr","v":"0x0e8fdfe4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe158"},"kids_end":{"t":"ptr","v":"0x0e8fe168"},"kids_cap":{"t":"ptr","v":"0x0e8fe168"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cae18"},"kids_end":{"t":"ptr","v":"0x0e9cae1c"},"kids_cap":{"t":"ptr","v":"0x0e9cae1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cae28"},"kids_end":{"t":"ptr","v":"0x0e9cae2c"},"kids_cap":{"t":"ptr","v":"0x0e9cae2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb068"},"kids_end":{"t":"ptr","v":"0x0e9cb06c"},"kids_cap":{"t":"ptr","v":"0x0e9cb06c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb0d8"},"kids_end":{"t":"ptr","v":"0x0e9cb0dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9caf48"},"kids_end":{"t":"ptr","v":"0x0e9caf50"},"kids_cap":{"t":"ptr","v":"0x0e9caf50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe098"},"kids_end":{"t":"ptr","v":"0x0e8fe0a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb088"},"kids_end":{"t":"ptr","v":"0x0e9cb090"},"kids_cap":{"t":"ptr","v":"0x0e9cb090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fdfa8"},"kids_end":{"t":"ptr","v":"0x0e8fdfb4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe1a0"},"kids_end":{"t":"ptr","v":"0x0e8fe1ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe008"},"kids_end":{"t":"ptr","v":"0x0e8fe014"},"kids_cap":{"t":"ptr","v":"0x0e8fe014"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9caf98"},"kids_end":{"t":"ptr","v":"0x0e9caf9c"},"kids_cap":{"t":"ptr","v":"0x0e9caf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cafd8"},"kids_end":{"t":"ptr","v":"0x0e9cafdc"},"kids_cap":{"t":"ptr","v":"0x0e9cafdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe050"},"kids_end":{"t":"ptr","v":"0x0e8fe05c"},"kids_cap":{"t":"ptr","v":"0x0e8fe05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9caf58"},"kids_end":{"t":"ptr","v":"0x0e9caf5c"},"kids_cap":{"t":"ptr","v":"0x0e9caf5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9cb0e8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb0f8"},"kids_end":{"t":"ptr","v":"0x0e9cb0fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9caf68"},"kids_end":{"t":"ptr","v":"0x0e9caf6c"},"kids_cap":{"t":"ptr","v":"0x0e9caf6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cafc8"},"kids_end":{"t":"ptr","v":"0x0e9cafcc"},"kids_cap":{"t":"ptr","v":"0x0e9cafcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe1d0"},"kids_end":{"t":"ptr","v":"0x0e8fe1dc"},"kids_cap":{"t":"ptr","v":"0x0e8fe1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9caf78"},"kids_end":{"t":"ptr","v":"0x0e9caf7c"},"kids_cap":{"t":"ptr","v":"0x0e9caf7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb118"},"kids_end":{"t":"ptr","v":"0x0e9cb11c"},"kids_cap":{"t":"ptr","v":"0x0e9cb11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb108"},"kids_end":{"t":"ptr","v":"0x0e9cb10c"},"kids_cap":{"t":"ptr","v":"0x0e9cb10c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb0c8"},"kids_end":{"t":"ptr","v":"0x0e9cb0cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb098"},"kids_end":{"t":"ptr","v":"0x0e9cb09c"},"kids_cap":{"t":"ptr","v":"0x0e9cb09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb128"},"kids_end":{"t":"ptr","v":"0x0e9cb12c"},"kids_cap":{"t":"ptr","v":"0x0e9cb12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9caf88"},"kids_end":{"t":"ptr","v":"0x0e9caf8c"},"kids_cap":{"t":"ptr","v":"0x0e9caf8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe1b8"},"kids_end":{"t":"ptr","v":"0x0e8fe1c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fdfc0"},"kids_end":{"t":"ptr","v":"0x0e8fdfcc"},"kids_cap":{"t":"ptr","v":"0x0e8fdfcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb078"},"kids_end":{"t":"ptr","v":"0x0e9cb07c"},"kids_cap":{"t":"ptr","v":"0x0e9cb07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb008"},"kids_end":{"t":"ptr","v":"0x0e9cb010"},"kids_cap":{"t":"ptr","v":"0x0e9cb010"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cafa8"},"kids_end":{"t":"ptr","v":"0x0e9cafb0"},"kids_cap":{"t":"ptr","v":"0x0e9cafb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88d218"},"kids_end":{"t":"ptr","v":"0x0e88d22c"},"kids_cap":{"t":"ptr","v":"0x0e88d22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fdff0"},"kids_end":{"t":"ptr","v":"0x0e8fdffc"},"kids_cap":{"t":"ptr","v":"0x0e8fdffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969f00"},"kids_end":{"t":"ptr","v":"0x0e969f24"},"kids_cap":{"t":"ptr","v":"0x0e969f24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9cafe8"},"kids_end":{"t":"ptr","v":"0x0e9cafec"},"kids_cap":{"t":"ptr","v":"0x0e9cafec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9cafb8"},"kids_end":{"t":"ptr","v":"0x0e9cafbc"},"kids_cap":{"t":"ptr","v":"0x0e9cafbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fe110"},"kids_end":{"t":"ptr","v":"0x0e8fe11c"},"kids_cap":{"t":"ptr","v":"0x0e8fe11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb138"},"kids_end":{"t":"ptr","v":"0x0e9cb13c"},"kids_cap":{"t":"ptr","v":"0x0e9cb13c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9caff8"},"kids_end":{"t":"ptr","v":"0x0e9caffc"},"kids_cap":{"t":"ptr","v":"0x0e9caffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb018"},"kids_end":{"t":"ptr","v":"0x0e9cb01c"},"kids_cap":{"t":"ptr","v":"0x0e9cb01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb0a8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb028"},"kids_end":{"t":"ptr","v":"0x0e9cb02c"},"kids_cap":{"t":"ptr","v":"0x0e9cb02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb038"},"kids_end":{"t":"ptr","v":"0x0e9cb040"},"kids_cap":{"t":"ptr","v":"0x0e9cb040"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb048"},"kids_end":{"t":"ptr","v":"0x0e9cb050"},"kids_cap":{"t":"ptr","v":"0x0e9cb050"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d358"},"kids_end":{"t":"ptr","v":"0x0e88d36c"},"kids_cap":{"t":"ptr","v":"0x0e88d36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe218"},"kids_end":{"t":"ptr","v":"0x0e8fe224"},"kids_cap":{"t":"ptr","v":"0x0e8fe224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb058"},"kids_end":{"t":"ptr","v":"0x0e9cb05c"},"kids_cap":{"t":"ptr","v":"0x0e9cb05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb0b8"},"kids_end":{"t":"ptr","v":"0x0e9cb0bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e92edd8"},"kids_end":{"t":"ptr","v":"0x0e92eddc"},"kids_cap":{"t":"ptr","v":"0x0e92eddc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e92ed78"},"kids_end":{"t":"ptr","v":"0x0e92ed7c"},"kids_cap":{"t":"ptr","v":"0x0e92ed7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e92ede8"},"kids_end":{"t":"ptr","v":"0x0e92edf0"},"kids_cap":{"t":"ptr","v":"0x0e92edf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe020"},"kids_end":{"t":"ptr","v":"0x0e8fe02c"},"kids_cap":{"t":"ptr","v":"0x0e8fe02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e92edb8"},"kids_end":{"t":"ptr","v":"0x0e92edc0"},"kids_cap":{"t":"ptr","v":"0x0e92edc0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e92ee48"},"kids_end":{"t":"ptr","v":"0x0e92ee50"},"kids_cap":{"t":"ptr","v":"0x0e92ee50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e92eeb8"},"kids_end":{"t":"ptr","v":"0x0e92eebc"},"kids_cap":{"t":"ptr","v":"0x0e92eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe0c8"},"kids_end":{"t":"ptr","v":"0x0e8fe0d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fe0f8"},"kids_end":{"t":"ptr","v":"0x0e8fe104"},"kids_cap":{"t":"ptr","v":"0x0e8fe104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe350"},"kids_end":{"t":"ptr","v":"0x0e8fe360"},"kids_cap":{"t":"ptr","v":"0x0e8fe360"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e92eec8"},"kids_end":{"t":"ptr","v":"0x0e92eed0"},"kids_cap":{"t":"ptr","v":"0x0e92eed0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e92ee18"},"kids_end":{"t":"ptr","v":"0x0e92ee1c"},"kids_cap":{"t":"ptr","v":"0x0e92ee1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe380"},"kids_end":{"t":"ptr","v":"0x0e8fe38c"},"kids_cap":{"t":"ptr","v":"0x0e8fe38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e92ee58"},"kids_end":{"t":"ptr","v":"0x0e92ee5c"},"kids_cap":{"t":"ptr","v":"0x0e92ee5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e92edc8"},"kids_end":{"t":"ptr","v":"0x0e92edcc"},"kids_cap":{"t":"ptr","v":"0x0e92edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e92ee28"},"kids_end":{"t":"ptr","v":"0x0e92ee2c"},"kids_cap":{"t":"ptr","v":"0x0e92ee2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e92ece8"},"kids_end":{"t":"ptr","v":"0x0e92ecec"},"kids_cap":{"t":"ptr","v":"0x0e92ecec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe3e0"},"kids_end":{"t":"ptr","v":"0x0e8fe3ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e92ed38"},"kids_end":{"t":"ptr","v":"0x0e92ed3c"},"kids_cap":{"t":"ptr","v":"0x0e92ed3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e92ed58"},"kids_end":{"t":"ptr","v":"0x0e92ed60"},"kids_cap":{"t":"ptr","v":"0x0e92ed60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fe6f8"},"kids_end":{"t":"ptr","v":"0x0e8fe704"},"kids_cap":{"t":"ptr","v":"0x0e8fe704"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e92edf8"},"kids_end":{"t":"ptr","v":"0x0e92edfc"},"kids_cap":{"t":"ptr","v":"0x0e92edfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e92ee38"},"kids_end":{"t":"ptr","v":"0x0e92ee40"},"kids_cap":{"t":"ptr","v":"0x0e92ee40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e92ee08"},"kids_end":{"t":"ptr","v":"0x0e92ee0c"},"kids_cap":{"t":"ptr","v":"0x0e92ee0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e92ee68"},"kids_end":{"t":"ptr","v":"0x0e92ee70"},"kids_cap":{"t":"ptr","v":"0x0e92ee70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e92ee78"},"kids_end":{"t":"ptr","v":"0x0e92ee80"},"kids_cap":{"t":"ptr","v":"0x0e92ee80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e92ed48"},"kids_end":{"t":"ptr","v":"0x0e92ed50"},"kids_cap":{"t":"ptr","v":"0x0e92ed50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e92eed8"},"kids_end":{"t":"ptr","v":"0x0e92eee0"},"kids_cap":{"t":"ptr","v":"0x0e92eee0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e92ed88"},"kids_end":{"t":"ptr","v":"0x0e92ed8c"},"kids_cap":{"t":"ptr","v":"0x0e92ed8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e92ed68"},"kids_end":{"t":"ptr","v":"0x0e92ed6c"},"kids_cap":{"t":"ptr","v":"0x0e92ed6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e92ecf8"},"kids_end":{"t":"ptr","v":"0x0e92ed00"},"kids_cap":{"t":"ptr","v":"0x0e92ed00"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e92ed08"},"kids_end":{"t":"ptr","v":"0x0e92ed10"},"kids_cap":{"t":"ptr","v":"0x0e92ed10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e92ee98"},"kids_end":{"t":"ptr","v":"0x0e92ee9c"},"kids_cap":{"t":"ptr","v":"0x0e92ee9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e92ed18"},"kids_end":{"t":"ptr","v":"0x0e92ed1c"},"kids_cap":{"t":"ptr","v":"0x0e92ed1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e92ee88"},"kids_end":{"t":"ptr","v":"0x0e92ee90"},"kids_cap":{"t":"ptr","v":"0x0e92ee90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e92eea8"},"kids_end":{"t":"ptr","v":"0x0e92eeac"},"kids_cap":{"t":"ptr","v":"0x0e92eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e92ed28"},"kids_end":{"t":"ptr","v":"0x0e92ed2c"},"kids_cap":{"t":"ptr","v":"0x0e92ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e92ed98"},"kids_end":{"t":"ptr","v":"0x0e92eda0"},"kids_cap":{"t":"ptr","v":"0x0e92eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e92eda8"},"kids_end":{"t":"ptr","v":"0x0e92edac"},"kids_cap":{"t":"ptr","v":"0x0e92edac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e92f7a8"},"kids_end":{"t":"ptr","v":"0x0e92f7ac"},"kids_cap":{"t":"ptr","v":"0x0e92f7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fe6c8"},"kids_end":{"t":"ptr","v":"0x0e8fe6d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fe620"},"kids_end":{"t":"ptr","v":"0x0e8fe630"},"kids_cap":{"t":"ptr","v":"0x0e8fe630"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e92f6e8"},"kids_end":{"t":"ptr","v":"0x0e92f6f0"},"kids_cap":{"t":"ptr","v":"0x0e92f6f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e92f7b8"},"kids_end":{"t":"ptr","v":"0x0e92f7c0"},"kids_cap":{"t":"ptr","v":"0x0e92f7c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e92f818"},"kids_end":{"t":"ptr","v":"0x0e92f81c"},"kids_cap":{"t":"ptr","v":"0x0e92f81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e92f6f8"},"kids_end":{"t":"ptr","v":"0x0e92f700"},"kids_cap":{"t":"ptr","v":"0x0e92f700"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e92f7d8"},"kids_end":{"t":"ptr","v":"0x0e92f7e0"},"kids_cap":{"t":"ptr","v":"0x0e92f7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e92f708"},"kids_end":{"t":"ptr","v":"0x0e92f710"},"kids_cap":{"t":"ptr","v":"0x0e92f710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e92f7e8"},"kids_end":{"t":"ptr","v":"0x0e92f7ec"},"kids_cap":{"t":"ptr","v":"0x0e92f7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e92f7f8"},"kids_end":{"t":"ptr","v":"0x0e92f7fc"},"kids_cap":{"t":"ptr","v":"0x0e92f7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e92f808"},"kids_end":{"t":"ptr","v":"0x0e92f810"},"kids_cap":{"t":"ptr","v":"0x0e92f810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e92fa68"},"kids_end":{"t":"ptr","v":"0x0e92fa6c"},"kids_cap":{"t":"ptr","v":"0x0e92fa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe728"},"kids_end":{"t":"ptr","v":"0x0e8fe734"},"kids_cap":{"t":"ptr","v":"0x0e8fe734"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e92f908"},"kids_end":{"t":"ptr","v":"0x0e92f90c"},"kids_cap":{"t":"ptr","v":"0x0e92f90c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d258"},"kids_end":{"t":"ptr","v":"0x0e88d26c"},"kids_cap":{"t":"ptr","v":"0x0e88d26c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e92faa8"},"kids_end":{"t":"ptr","v":"0x0e92faac"},"kids_cap":{"t":"ptr","v":"0x0e92faac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e92f938"},"kids_end":{"t":"ptr","v":"0x0e92f93c"},"kids_cap":{"t":"ptr","v":"0x0e92f93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e92f988"},"kids_end":{"t":"ptr","v":"0x0e92f98c"},"kids_cap":{"t":"ptr","v":"0x0e92f98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e92f9f8"},"kids_end":{"t":"ptr","v":"0x0e92f9fc"},"kids_cap":{"t":"ptr","v":"0x0e92f9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9309f8"},"kids_end":{"t":"ptr","v":"0x0e9309fc"},"kids_cap":{"t":"ptr","v":"0x0e9309fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe740"},"kids_end":{"t":"ptr","v":"0x0e8fe750"},"kids_cap":{"t":"ptr","v":"0x0e8fe750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fe638"},"kids_end":{"t":"ptr","v":"0x0e8fe644"},"kids_cap":{"t":"ptr","v":"0x0e8fe644"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e930908"},"kids_end":{"t":"ptr","v":"0x0e93090c"},"kids_cap":{"t":"ptr","v":"0x0e93090c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9309a8"},"kids_end":{"t":"ptr","v":"0x0e9309ac"},"kids_cap":{"t":"ptr","v":"0x0e9309ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe7e8"},"kids_end":{"t":"ptr","v":"0x0e8fe7f8"},"kids_cap":{"t":"ptr","v":"0x0e8fe7f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9308e8"},"kids_end":{"t":"ptr","v":"0x0e9308f0"},"kids_cap":{"t":"ptr","v":"0x0e9308f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e930968"},"kids_end":{"t":"ptr","v":"0x0e93096c"},"kids_cap":{"t":"ptr","v":"0x0e93096c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e930978"},"kids_end":{"t":"ptr","v":"0x0e93097c"},"kids_cap":{"t":"ptr","v":"0x0e93097c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fe758"},"kids_end":{"t":"ptr","v":"0x0e8fe764"},"kids_cap":{"t":"ptr","v":"0x0e8fe764"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9308f8"},"kids_end":{"t":"ptr","v":"0x0e930900"},"kids_cap":{"t":"ptr","v":"0x0e930900"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d0b8"},"kids_end":{"t":"ptr","v":"0x0e88d0cc"},"kids_cap":{"t":"ptr","v":"0x0e88d0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e930918"},"kids_end":{"t":"ptr","v":"0x0e93091c"},"kids_cap":{"t":"ptr","v":"0x0e93091c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e930988"},"kids_end":{"t":"ptr","v":"0x0e93098c"},"kids_cap":{"t":"ptr","v":"0x0e93098c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9309d8"},"kids_end":{"t":"ptr","v":"0x0e9309dc"},"kids_cap":{"t":"ptr","v":"0x0e9309dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e930998"},"kids_end":{"t":"ptr","v":"0x0e93099c"},"kids_cap":{"t":"ptr","v":"0x0e93099c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9309b8"},"kids_end":{"t":"ptr","v":"0x0e9309bc"},"kids_cap":{"t":"ptr","v":"0x0e9309bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e92eb48"},"kids_end":{"t":"ptr","v":"0x0e92eb50"},"kids_cap":{"t":"ptr","v":"0x0e92eb50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d1b8"},"kids_end":{"t":"ptr","v":"0x0e88d1cc"},"kids_cap":{"t":"ptr","v":"0x0e88d1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e92ecb8"},"kids_end":{"t":"ptr","v":"0x0e92ecbc"},"kids_cap":{"t":"ptr","v":"0x0e92ecbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e92eb68"},"kids_end":{"t":"ptr","v":"0x0e92eb6c"},"kids_cap":{"t":"ptr","v":"0x0e92eb6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e92ebd8"},"kids_end":{"t":"ptr","v":"0x0e92ebdc"},"kids_cap":{"t":"ptr","v":"0x0e92ebdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e92eb18"},"kids_end":{"t":"ptr","v":"0x0e92eb20"},"kids_cap":{"t":"ptr","v":"0x0e92eb20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e92eb78"},"kids_end":{"t":"ptr","v":"0x0e92eb80"},"kids_cap":{"t":"ptr","v":"0x0e92eb80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e92ec98"},"kids_end":{"t":"ptr","v":"0x0e92eca0"},"kids_cap":{"t":"ptr","v":"0x0e92eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e92eb58"},"kids_end":{"t":"ptr","v":"0x0e92eb5c"},"kids_cap":{"t":"ptr","v":"0x0e92eb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e92eca8"},"kids_end":{"t":"ptr","v":"0x0e92ecac"},"kids_cap":{"t":"ptr","v":"0x0e92ecac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe5c0"},"kids_end":{"t":"ptr","v":"0x0e8fe5cc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe800"},"kids_end":{"t":"ptr","v":"0x0e8fe80c"},"kids_cap":{"t":"ptr","v":"0x0e8fe80c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe770"},"kids_end":{"t":"ptr","v":"0x0e8fe77c"},"kids_cap":{"t":"ptr","v":"0x0e8fe77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe7a0"},"kids_end":{"t":"ptr","v":"0x0e8fe7ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe818"},"kids_end":{"t":"ptr","v":"0x0e8fe824"},"kids_cap":{"t":"ptr","v":"0x0e8fe824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d1f8"},"kids_end":{"t":"ptr","v":"0x0e88d210"},"kids_cap":{"t":"ptr","v":"0x0e88d210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e92ec28"},"kids_end":{"t":"ptr","v":"0x0e92ec30"},"kids_cap":{"t":"ptr","v":"0x0e92ec30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e92ec68"},"kids_end":{"t":"ptr","v":"0x0e92ec70"},"kids_cap":{"t":"ptr","v":"0x0e92ec70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e92eba8"},"kids_end":{"t":"ptr","v":"0x0e92ebb0"},"kids_cap":{"t":"ptr","v":"0x0e92ebb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e92ec18"},"kids_end":{"t":"ptr","v":"0x0e92ec20"},"kids_cap":{"t":"ptr","v":"0x0e92ec20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e92eae8"},"kids_end":{"t":"ptr","v":"0x0e92eaec"},"kids_cap":{"t":"ptr","v":"0x0e92eaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e92ec58"},"kids_end":{"t":"ptr","v":"0x0e92ec5c"},"kids_cap":{"t":"ptr","v":"0x0e92ec5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e92ec08"},"kids_end":{"t":"ptr","v":"0x0e92ec0c"},"kids_cap":{"t":"ptr","v":"0x0e92ec0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e92ecc8"},"kids_end":{"t":"ptr","v":"0x0e92eccc"},"kids_cap":{"t":"ptr","v":"0x0e92eccc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e92ecd8"},"kids_end":{"t":"ptr","v":"0x0e92ecdc"},"kids_cap":{"t":"ptr","v":"0x0e92ecdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e92eb88"},"kids_end":{"t":"ptr","v":"0x0e92eb8c"},"kids_cap":{"t":"ptr","v":"0x0e92eb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e92ebb8"},"kids_end":{"t":"ptr","v":"0x0e92ebbc"},"kids_cap":{"t":"ptr","v":"0x0e92ebbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e92eaf8"},"kids_end":{"t":"ptr","v":"0x0e92eafc"},"kids_cap":{"t":"ptr","v":"0x0e92eafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e92eb98"},"kids_end":{"t":"ptr","v":"0x0e92eb9c"},"kids_cap":{"t":"ptr","v":"0x0e92eb9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e92ebe8"},"kids_end":{"t":"ptr","v":"0x0e92ebec"},"kids_cap":{"t":"ptr","v":"0x0e92ebec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e92eb08"},"kids_end":{"t":"ptr","v":"0x0e92eb0c"},"kids_cap":{"t":"ptr","v":"0x0e92eb0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["player","tree_header"],"undeclared":[],"n":0}} +{"ts":413532197,"hook":"Game::TechTree::ProcessResearch","mode":"compare","call_id":6,"thread":1412,"depth":0,"args":[{"t":"ptr","v":"0x0e93b570","n":"tree"},{"t":"ptr","v":"0x0e90bd70","n":"owner"},{"t":"i32","v":2,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e96ad78","n":"rng"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"list","v":[{"t":"struct","v":{"tech_id":{"t":"i32","v":9},"points":{"t":"i32","v":3064}}}],"n":"alloc"},{"t":"i32","v":0,"n":"overbudget_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":394},"next_index":{"t":"i64","v":230}}}},"overbudget":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9ca6b8"},"kids_end":{"t":"ptr","v":"0x0e9ca6bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9ca6b8"},"kids_end":{"t":"ptr","v":"0x0e9ca6bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9ca668"},"kids_end":{"t":"ptr","v":"0x0e9ca66c"},"kids_cap":{"t":"ptr","v":"0x0e9ca66c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9ca668"},"kids_end":{"t":"ptr","v":"0x0e9ca66c"},"kids_cap":{"t":"ptr","v":"0x0e9ca66c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe4a0"},"kids_end":{"t":"ptr","v":"0x0e8fe4ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe4a0"},"kids_end":{"t":"ptr","v":"0x0e8fe4ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":3064},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9ca708"},"kids_end":{"t":"ptr","v":"0x0e9ca70c"},"kids_cap":{"t":"ptr","v":"0x0e9ca70c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9ca708"},"kids_end":{"t":"ptr","v":"0x0e9ca70c"},"kids_cap":{"t":"ptr","v":"0x0e9ca70c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e9ca598"},"kids_end":{"t":"ptr","v":"0x0e9ca5a0"},"kids_cap":{"t":"ptr","v":"0x0e9ca5a0"},"unk10":{"t":"ptr","v":"0x3fc00000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x3f800000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e9ca598"},"kids_end":{"t":"ptr","v":"0x0e9ca5a0"},"kids_cap":{"t":"ptr","v":"0x0e9ca5a0"},"unk10":{"t":"ptr","v":"0x3fc00000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x3f800000"}}}},"node[13]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9ca578"},"kids_end":{"t":"ptr","v":"0x0e9ca57c"},"kids_cap":{"t":"ptr","v":"0x0e9ca57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9ca578"},"kids_end":{"t":"ptr","v":"0x0e9ca57c"},"kids_cap":{"t":"ptr","v":"0x0e9ca57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9ca5d8"},"kids_end":{"t":"ptr","v":"0x0e9ca5dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9ca5d8"},"kids_end":{"t":"ptr","v":"0x0e9ca5dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe4e8"},"kids_end":{"t":"ptr","v":"0x0e8fe4f4"},"kids_cap":{"t":"ptr","v":"0x0e8fe4f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe4e8"},"kids_end":{"t":"ptr","v":"0x0e8fe4f4"},"kids_cap":{"t":"ptr","v":"0x0e8fe4f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe3f8"},"kids_end":{"t":"ptr","v":"0x0e8fe404"},"kids_cap":{"t":"ptr","v":"0x0e8fe404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe3f8"},"kids_end":{"t":"ptr","v":"0x0e8fe404"},"kids_cap":{"t":"ptr","v":"0x0e8fe404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9ca738"},"kids_end":{"t":"ptr","v":"0x0e9ca740"},"kids_cap":{"t":"ptr","v":"0x0e9ca740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9ca738"},"kids_end":{"t":"ptr","v":"0x0e9ca740"},"kids_cap":{"t":"ptr","v":"0x0e9ca740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe410"},"kids_end":{"t":"ptr","v":"0x0e8fe41c"},"kids_cap":{"t":"ptr","v":"0x0e8fe41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe410"},"kids_end":{"t":"ptr","v":"0x0e8fe41c"},"kids_cap":{"t":"ptr","v":"0x0e8fe41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9ca698"},"kids_end":{"t":"ptr","v":"0x0e9ca69c"},"kids_cap":{"t":"ptr","v":"0x0e9ca69c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9ca698"},"kids_end":{"t":"ptr","v":"0x0e9ca69c"},"kids_cap":{"t":"ptr","v":"0x0e9ca69c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e9ca548"},"kids_end":{"t":"ptr","v":"0x0e9ca550"},"kids_cap":{"t":"ptr","v":"0x0e9ca550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e9ca548"},"kids_end":{"t":"ptr","v":"0x0e9ca550"},"kids_cap":{"t":"ptr","v":"0x0e9ca550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe428"},"kids_end":{"t":"ptr","v":"0x0e8fe434"},"kids_cap":{"t":"ptr","v":"0x0e8fe434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe428"},"kids_end":{"t":"ptr","v":"0x0e8fe434"},"kids_cap":{"t":"ptr","v":"0x0e8fe434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe530"},"kids_end":{"t":"ptr","v":"0x0e8fe53c"},"kids_cap":{"t":"ptr","v":"0x0e8fe53c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe530"},"kids_end":{"t":"ptr","v":"0x0e8fe53c"},"kids_cap":{"t":"ptr","v":"0x0e8fe53c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9ca628"},"kids_end":{"t":"ptr","v":"0x0e9ca62c"},"kids_cap":{"t":"ptr","v":"0x0e9ca62c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9ca628"},"kids_end":{"t":"ptr","v":"0x0e9ca62c"},"kids_cap":{"t":"ptr","v":"0x0e9ca62c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe440"},"kids_end":{"t":"ptr","v":"0x0e8fe44c"},"kids_cap":{"t":"ptr","v":"0x0e8fe44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe440"},"kids_end":{"t":"ptr","v":"0x0e8fe44c"},"kids_cap":{"t":"ptr","v":"0x0e8fe44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9ca608"},"kids_end":{"t":"ptr","v":"0x0e9ca60c"},"kids_cap":{"t":"ptr","v":"0x0e9ca60c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9ca608"},"kids_end":{"t":"ptr","v":"0x0e9ca60c"},"kids_cap":{"t":"ptr","v":"0x0e9ca60c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9ca5c8"},"kids_end":{"t":"ptr","v":"0x0e9ca5cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9ca5c8"},"kids_end":{"t":"ptr","v":"0x0e9ca5cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9ca6e8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9ca6e8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9ca558"},"kids_end":{"t":"ptr","v":"0x0e9ca55c"},"kids_cap":{"t":"ptr","v":"0x0e9ca55c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9ca558"},"kids_end":{"t":"ptr","v":"0x0e9ca55c"},"kids_cap":{"t":"ptr","v":"0x0e9ca55c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe458"},"kids_end":{"t":"ptr","v":"0x0e8fe464"},"kids_cap":{"t":"ptr","v":"0x0e8fe464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe458"},"kids_end":{"t":"ptr","v":"0x0e8fe464"},"kids_cap":{"t":"ptr","v":"0x0e8fe464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9ca5a8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9ca5a8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9ca5b8"},"kids_end":{"t":"ptr","v":"0x0e9ca5bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9ca5b8"},"kids_end":{"t":"ptr","v":"0x0e9ca5bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9ca6a8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9ca6a8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9ca5e8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9ca5e8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9ca5f8"},"kids_end":{"t":"ptr","v":"0x0e9ca5fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9ca5f8"},"kids_end":{"t":"ptr","v":"0x0e9ca5fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9ca568"},"kids_end":{"t":"ptr","v":"0x0e9ca56c"},"kids_cap":{"t":"ptr","v":"0x0e9ca56c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9ca568"},"kids_end":{"t":"ptr","v":"0x0e9ca56c"},"kids_cap":{"t":"ptr","v":"0x0e9ca56c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9ca588"},"kids_end":{"t":"ptr","v":"0x0e9ca58c"},"kids_cap":{"t":"ptr","v":"0x0e9ca58c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9ca588"},"kids_end":{"t":"ptr","v":"0x0e9ca58c"},"kids_cap":{"t":"ptr","v":"0x0e9ca58c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe470"},"kids_end":{"t":"ptr","v":"0x0e8fe47c"},"kids_cap":{"t":"ptr","v":"0x0e8fe47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe470"},"kids_end":{"t":"ptr","v":"0x0e8fe47c"},"kids_cap":{"t":"ptr","v":"0x0e8fe47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e9ca688"},"kids_end":{"t":"ptr","v":"0x0e9ca690"},"kids_cap":{"t":"ptr","v":"0x0e9ca690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e9ca688"},"kids_end":{"t":"ptr","v":"0x0e9ca690"},"kids_cap":{"t":"ptr","v":"0x0e9ca690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9ca618"},"kids_end":{"t":"ptr","v":"0x0e9ca61c"},"kids_cap":{"t":"ptr","v":"0x0e9ca61c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9ca618"},"kids_end":{"t":"ptr","v":"0x0e9ca61c"},"kids_cap":{"t":"ptr","v":"0x0e9ca61c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9ca728"},"kids_end":{"t":"ptr","v":"0x0e9ca730"},"kids_cap":{"t":"ptr","v":"0x0e9ca730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9ca728"},"kids_end":{"t":"ptr","v":"0x0e9ca730"},"kids_cap":{"t":"ptr","v":"0x0e9ca730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9ca638"},"kids_end":{"t":"ptr","v":"0x0e9ca63c"},"kids_cap":{"t":"ptr","v":"0x0e9ca63c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9ca638"},"kids_end":{"t":"ptr","v":"0x0e9ca63c"},"kids_cap":{"t":"ptr","v":"0x0e9ca63c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e9ca6c8"},"kids_end":{"t":"ptr","v":"0x0e9ca6cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e9ca6c8"},"kids_end":{"t":"ptr","v":"0x0e9ca6cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fe6e0"},"kids_end":{"t":"ptr","v":"0x0e8fe6ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fe6e0"},"kids_end":{"t":"ptr","v":"0x0e8fe6ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e99b508"},"kids_end":{"t":"ptr","v":"0x0e99b528"},"kids_cap":{"t":"ptr","v":"0x0e99b528"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e99b508"},"kids_end":{"t":"ptr","v":"0x0e99b528"},"kids_cap":{"t":"ptr","v":"0x0e99b528"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9ca648"},"kids_end":{"t":"ptr","v":"0x0e9ca64c"},"kids_cap":{"t":"ptr","v":"0x0e9ca64c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9ca648"},"kids_end":{"t":"ptr","v":"0x0e9ca64c"},"kids_cap":{"t":"ptr","v":"0x0e9ca64c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9ca658"},"kids_end":{"t":"ptr","v":"0x0e9ca65c"},"kids_cap":{"t":"ptr","v":"0x0e9ca65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9ca658"},"kids_end":{"t":"ptr","v":"0x0e9ca65c"},"kids_cap":{"t":"ptr","v":"0x0e9ca65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e9ca718"},"kids_end":{"t":"ptr","v":"0x0e9ca720"},"kids_cap":{"t":"ptr","v":"0x0e9ca720"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e9ca718"},"kids_end":{"t":"ptr","v":"0x0e9ca720"},"kids_cap":{"t":"ptr","v":"0x0e9ca720"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9ca678"},"kids_end":{"t":"ptr","v":"0x0e9ca67c"},"kids_cap":{"t":"ptr","v":"0x0e9ca67c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9ca678"},"kids_end":{"t":"ptr","v":"0x0e9ca67c"},"kids_cap":{"t":"ptr","v":"0x0e9ca67c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9ca6d8"},"kids_end":{"t":"ptr","v":"0x0e9ca6dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9ca6d8"},"kids_end":{"t":"ptr","v":"0x0e9ca6dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9ca6f8"},"kids_end":{"t":"ptr","v":"0x0e9ca6fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9ca6f8"},"kids_end":{"t":"ptr","v":"0x0e9ca6fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9ca878"},"kids_end":{"t":"ptr","v":"0x0e9ca87c"},"kids_cap":{"t":"ptr","v":"0x0e9ca87c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9ca878"},"kids_end":{"t":"ptr","v":"0x0e9ca87c"},"kids_cap":{"t":"ptr","v":"0x0e9ca87c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9ca768"},"kids_end":{"t":"ptr","v":"0x0e9ca770"},"kids_cap":{"t":"ptr","v":"0x0e9ca770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9ca768"},"kids_end":{"t":"ptr","v":"0x0e9ca770"},"kids_cap":{"t":"ptr","v":"0x0e9ca770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9ca858"},"kids_end":{"t":"ptr","v":"0x0e9ca85c"},"kids_cap":{"t":"ptr","v":"0x0e9ca85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9ca858"},"kids_end":{"t":"ptr","v":"0x0e9ca85c"},"kids_cap":{"t":"ptr","v":"0x0e9ca85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88ce78"},"kids_end":{"t":"ptr","v":"0x0e88ce8c"},"kids_cap":{"t":"ptr","v":"0x0e88ce8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88ce78"},"kids_end":{"t":"ptr","v":"0x0e88ce8c"},"kids_cap":{"t":"ptr","v":"0x0e88ce8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe650"},"kids_end":{"t":"ptr","v":"0x0e8fe65c"},"kids_cap":{"t":"ptr","v":"0x0e8fe65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe650"},"kids_end":{"t":"ptr","v":"0x0e8fe65c"},"kids_cap":{"t":"ptr","v":"0x0e8fe65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9ca828"},"kids_end":{"t":"ptr","v":"0x0e9ca82c"},"kids_cap":{"t":"ptr","v":"0x0e9ca82c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9ca828"},"kids_end":{"t":"ptr","v":"0x0e9ca82c"},"kids_cap":{"t":"ptr","v":"0x0e9ca82c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9ca868"},"kids_end":{"t":"ptr","v":"0x0e9ca86c"},"kids_cap":{"t":"ptr","v":"0x0e9ca86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9ca868"},"kids_end":{"t":"ptr","v":"0x0e9ca86c"},"kids_cap":{"t":"ptr","v":"0x0e9ca86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9ca8b8"},"kids_end":{"t":"ptr","v":"0x0e9ca8bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9ca8b8"},"kids_end":{"t":"ptr","v":"0x0e9ca8bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9ca788"},"kids_end":{"t":"ptr","v":"0x0e9ca78c"},"kids_cap":{"t":"ptr","v":"0x0e9ca78c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9ca788"},"kids_end":{"t":"ptr","v":"0x0e9ca78c"},"kids_cap":{"t":"ptr","v":"0x0e9ca78c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe668"},"kids_end":{"t":"ptr","v":"0x0e8fe674"},"kids_cap":{"t":"ptr","v":"0x0e8fe674"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe668"},"kids_end":{"t":"ptr","v":"0x0e8fe674"},"kids_cap":{"t":"ptr","v":"0x0e8fe674"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9ca798"},"kids_end":{"t":"ptr","v":"0x0e9ca79c"},"kids_cap":{"t":"ptr","v":"0x0e9ca79c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9ca798"},"kids_end":{"t":"ptr","v":"0x0e9ca79c"},"kids_cap":{"t":"ptr","v":"0x0e9ca79c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe710"},"kids_end":{"t":"ptr","v":"0x0e8fe71c"},"kids_cap":{"t":"ptr","v":"0x0e8fe71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe710"},"kids_end":{"t":"ptr","v":"0x0e8fe71c"},"kids_cap":{"t":"ptr","v":"0x0e8fe71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e9ca8d8"},"kids_end":{"t":"ptr","v":"0x0e9ca8e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e9ca8d8"},"kids_end":{"t":"ptr","v":"0x0e9ca8e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe680"},"kids_end":{"t":"ptr","v":"0x0e8fe690"},"kids_cap":{"t":"ptr","v":"0x0e8fe690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe680"},"kids_end":{"t":"ptr","v":"0x0e8fe690"},"kids_cap":{"t":"ptr","v":"0x0e8fe690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9ca758"},"kids_end":{"t":"ptr","v":"0x0e9ca760"},"kids_cap":{"t":"ptr","v":"0x0e9ca760"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9ca758"},"kids_end":{"t":"ptr","v":"0x0e9ca760"},"kids_cap":{"t":"ptr","v":"0x0e9ca760"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9ca928"},"kids_end":{"t":"ptr","v":"0x0e9ca92c"},"kids_cap":{"t":"ptr","v":"0x0e9ca92c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9ca928"},"kids_end":{"t":"ptr","v":"0x0e9ca92c"},"kids_cap":{"t":"ptr","v":"0x0e9ca92c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe7b8"},"kids_end":{"t":"ptr","v":"0x0e8fe7c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe7c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe7b8"},"kids_end":{"t":"ptr","v":"0x0e8fe7c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe7c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9ca778"},"kids_end":{"t":"ptr","v":"0x0e9ca77c"},"kids_cap":{"t":"ptr","v":"0x0e9ca77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9ca778"},"kids_end":{"t":"ptr","v":"0x0e9ca77c"},"kids_cap":{"t":"ptr","v":"0x0e9ca77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9ca7a8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9ca7a8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e9ca7b8"},"kids_end":{"t":"ptr","v":"0x0e9ca7bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e9ca7b8"},"kids_end":{"t":"ptr","v":"0x0e9ca7bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe698"},"kids_end":{"t":"ptr","v":"0x0e8fe6a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":7500},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":4},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":2},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe698"},"kids_end":{"t":"ptr","v":"0x0e8fe6a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":7500},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":4},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":2},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9ca7c8"},"kids_end":{"t":"ptr","v":"0x0e9ca7cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9ca7c8"},"kids_end":{"t":"ptr","v":"0x0e9ca7cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9ca918"},"kids_end":{"t":"ptr","v":"0x0e9ca91c"},"kids_cap":{"t":"ptr","v":"0x0e9ca91c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9ca918"},"kids_end":{"t":"ptr","v":"0x0e9ca91c"},"kids_cap":{"t":"ptr","v":"0x0e9ca91c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e9ca838"},"kids_end":{"t":"ptr","v":"0x0e9ca83c"},"kids_cap":{"t":"ptr","v":"0x0e9ca83c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e9ca838"},"kids_end":{"t":"ptr","v":"0x0e9ca83c"},"kids_cap":{"t":"ptr","v":"0x0e9ca83c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9ca748"},"kids_end":{"t":"ptr","v":"0x0e9ca750"},"kids_cap":{"t":"ptr","v":"0x0e9ca750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9ca748"},"kids_end":{"t":"ptr","v":"0x0e9ca750"},"kids_cap":{"t":"ptr","v":"0x0e9ca750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9ca8a8"},"kids_end":{"t":"ptr","v":"0x0e9ca8b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9ca8a8"},"kids_end":{"t":"ptr","v":"0x0e9ca8b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9ca938"},"kids_end":{"t":"ptr","v":"0x0e9ca93c"},"kids_cap":{"t":"ptr","v":"0x0e9ca93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9ca938"},"kids_end":{"t":"ptr","v":"0x0e9ca93c"},"kids_cap":{"t":"ptr","v":"0x0e9ca93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9ca848"},"kids_end":{"t":"ptr","v":"0x0e9ca84c"},"kids_cap":{"t":"ptr","v":"0x0e9ca84c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9ca848"},"kids_end":{"t":"ptr","v":"0x0e9ca84c"},"kids_cap":{"t":"ptr","v":"0x0e9ca84c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9ca888"},"kids_end":{"t":"ptr","v":"0x0e9ca88c"},"kids_cap":{"t":"ptr","v":"0x0e9ca88c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9ca888"},"kids_end":{"t":"ptr","v":"0x0e9ca88c"},"kids_cap":{"t":"ptr","v":"0x0e9ca88c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9ca8c8"},"kids_end":{"t":"ptr","v":"0x0e9ca8cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9ca8c8"},"kids_end":{"t":"ptr","v":"0x0e9ca8cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9ca898"},"kids_end":{"t":"ptr","v":"0x0e9ca89c"},"kids_cap":{"t":"ptr","v":"0x0e9ca89c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9ca898"},"kids_end":{"t":"ptr","v":"0x0e9ca89c"},"kids_cap":{"t":"ptr","v":"0x0e9ca89c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9ca8e8"},"kids_end":{"t":"ptr","v":"0x0e9ca8ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca8ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9ca8e8"},"kids_end":{"t":"ptr","v":"0x0e9ca8ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca8ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9ca7e8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9ca7e8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9ca8f8"},"kids_end":{"t":"ptr","v":"0x0e9ca8fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9ca8f8"},"kids_end":{"t":"ptr","v":"0x0e9ca8fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e9ca818"},"kids_end":{"t":"ptr","v":"0x0e9ca81c"},"kids_cap":{"t":"ptr","v":"0x0e9ca81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e9ca818"},"kids_end":{"t":"ptr","v":"0x0e9ca81c"},"kids_cap":{"t":"ptr","v":"0x0e9ca81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e9ca7d8"},"kids_end":{"t":"ptr","v":"0x0e9ca7e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e9ca7d8"},"kids_end":{"t":"ptr","v":"0x0e9ca7e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9ca908"},"kids_end":{"t":"ptr","v":"0x0e9ca910"},"kids_cap":{"t":"ptr","v":"0x0e9ca910"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9ca908"},"kids_end":{"t":"ptr","v":"0x0e9ca910"},"kids_cap":{"t":"ptr","v":"0x0e9ca910"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9ca7f8"},"kids_end":{"t":"ptr","v":"0x0e9ca7fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9ca7f8"},"kids_end":{"t":"ptr","v":"0x0e9ca7fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9ca808"},"kids_end":{"t":"ptr","v":"0x0e9ca810"},"kids_cap":{"t":"ptr","v":"0x0e9ca810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9ca808"},"kids_end":{"t":"ptr","v":"0x0e9ca810"},"kids_cap":{"t":"ptr","v":"0x0e9ca810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9ca9a8"},"kids_end":{"t":"ptr","v":"0x0e9ca9b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9ca9a8"},"kids_end":{"t":"ptr","v":"0x0e9ca9b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9ca9b8"},"kids_end":{"t":"ptr","v":"0x0e9ca9bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9ca9b8"},"kids_end":{"t":"ptr","v":"0x0e9ca9bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe788"},"kids_end":{"t":"ptr","v":"0x0e8fe794"},"kids_cap":{"t":"ptr","v":"0x0e8fe794"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe788"},"kids_end":{"t":"ptr","v":"0x0e8fe794"},"kids_cap":{"t":"ptr","v":"0x0e8fe794"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9caae8"},"kids_end":{"t":"ptr","v":"0x0e9caaec"},"kids_cap":{"t":"ptr","v":"0x0e9caaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9caae8"},"kids_end":{"t":"ptr","v":"0x0e9caaec"},"kids_cap":{"t":"ptr","v":"0x0e9caaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e9caaa8"},"kids_end":{"t":"ptr","v":"0x0e9caab0"},"kids_cap":{"t":"ptr","v":"0x0e9caab0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e9caaa8"},"kids_end":{"t":"ptr","v":"0x0e9caab0"},"kids_cap":{"t":"ptr","v":"0x0e9caab0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9caa38"},"kids_end":{"t":"ptr","v":"0x0e9caa3c"},"kids_cap":{"t":"ptr","v":"0x0e9caa3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9caa38"},"kids_end":{"t":"ptr","v":"0x0e9caa3c"},"kids_cap":{"t":"ptr","v":"0x0e9caa3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9caac8"},"kids_end":{"t":"ptr","v":"0x0e9caacc"},"kids_cap":{"t":"ptr","v":"0x0e9caacc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9caac8"},"kids_end":{"t":"ptr","v":"0x0e9caacc"},"kids_cap":{"t":"ptr","v":"0x0e9caacc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe860"},"kids_end":{"t":"ptr","v":"0x0e8fe870"},"kids_cap":{"t":"ptr","v":"0x0e8fe870"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe860"},"kids_end":{"t":"ptr","v":"0x0e8fe870"},"kids_cap":{"t":"ptr","v":"0x0e8fe870"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e9caa98"},"kids_end":{"t":"ptr","v":"0x0e9caaa0"},"kids_cap":{"t":"ptr","v":"0x0e9caaa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e9caa98"},"kids_end":{"t":"ptr","v":"0x0e9caaa0"},"kids_cap":{"t":"ptr","v":"0x0e9caaa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9ca988"},"kids_end":{"t":"ptr","v":"0x0e9ca98c"},"kids_cap":{"t":"ptr","v":"0x0e9ca98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9ca988"},"kids_end":{"t":"ptr","v":"0x0e9ca98c"},"kids_cap":{"t":"ptr","v":"0x0e9ca98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe878"},"kids_end":{"t":"ptr","v":"0x0e8fe888"},"kids_cap":{"t":"ptr","v":"0x0e8fe888"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe878"},"kids_end":{"t":"ptr","v":"0x0e8fe888"},"kids_cap":{"t":"ptr","v":"0x0e8fe888"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9cab28"},"kids_end":{"t":"ptr","v":"0x0e9cab30"},"kids_cap":{"t":"ptr","v":"0x0e9cab30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9cab28"},"kids_end":{"t":"ptr","v":"0x0e9cab30"},"kids_cap":{"t":"ptr","v":"0x0e9cab30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9caaf8"},"kids_end":{"t":"ptr","v":"0x0e9caafc"},"kids_cap":{"t":"ptr","v":"0x0e9caafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9caaf8"},"kids_end":{"t":"ptr","v":"0x0e9caafc"},"kids_cap":{"t":"ptr","v":"0x0e9caafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e9cab38"},"kids_end":{"t":"ptr","v":"0x0e9cab3c"},"kids_cap":{"t":"ptr","v":"0x0e9cab3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e9cab38"},"kids_end":{"t":"ptr","v":"0x0e9cab3c"},"kids_cap":{"t":"ptr","v":"0x0e9cab3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e9cab08"},"kids_end":{"t":"ptr","v":"0x0e9cab10"},"kids_cap":{"t":"ptr","v":"0x0e9cab10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e9cab08"},"kids_end":{"t":"ptr","v":"0x0e9cab10"},"kids_cap":{"t":"ptr","v":"0x0e9cab10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9caa08"},"kids_end":{"t":"ptr","v":"0x0e9caa0c"},"kids_cap":{"t":"ptr","v":"0x0e9caa0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9caa08"},"kids_end":{"t":"ptr","v":"0x0e9caa0c"},"kids_cap":{"t":"ptr","v":"0x0e9caa0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9ca9c8"},"kids_end":{"t":"ptr","v":"0x0e9ca9d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9ca9c8"},"kids_end":{"t":"ptr","v":"0x0e9ca9d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e8fe7d0"},"kids_end":{"t":"ptr","v":"0x0e8fe7e0"},"kids_cap":{"t":"ptr","v":"0x0e8fe7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e8fe7d0"},"kids_end":{"t":"ptr","v":"0x0e8fe7e0"},"kids_cap":{"t":"ptr","v":"0x0e8fe7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9ca9d8"},"kids_end":{"t":"ptr","v":"0x0e9ca9dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9ca9d8"},"kids_end":{"t":"ptr","v":"0x0e9ca9dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9caa58"},"kids_end":{"t":"ptr","v":"0x0e9caa5c"},"kids_cap":{"t":"ptr","v":"0x0e9caa5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9caa58"},"kids_end":{"t":"ptr","v":"0x0e9caa5c"},"kids_cap":{"t":"ptr","v":"0x0e9caa5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9caa48"},"kids_end":{"t":"ptr","v":"0x0e9caa50"},"kids_cap":{"t":"ptr","v":"0x0e9caa50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9caa48"},"kids_end":{"t":"ptr","v":"0x0e9caa50"},"kids_cap":{"t":"ptr","v":"0x0e9caa50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9caa68"},"kids_end":{"t":"ptr","v":"0x0e9caa6c"},"kids_cap":{"t":"ptr","v":"0x0e9caa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9caa68"},"kids_end":{"t":"ptr","v":"0x0e9caa6c"},"kids_cap":{"t":"ptr","v":"0x0e9caa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9ca9e8"},"kids_end":{"t":"ptr","v":"0x0e9ca9ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca9ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9ca9e8"},"kids_end":{"t":"ptr","v":"0x0e9ca9ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca9ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe590"},"kids_end":{"t":"ptr","v":"0x0e8fe59c"},"kids_cap":{"t":"ptr","v":"0x0e8fe59c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe590"},"kids_end":{"t":"ptr","v":"0x0e8fe59c"},"kids_cap":{"t":"ptr","v":"0x0e8fe59c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe5f0"},"kids_end":{"t":"ptr","v":"0x0e8fe5fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe5f0"},"kids_end":{"t":"ptr","v":"0x0e8fe5fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe6b0"},"kids_end":{"t":"ptr","v":"0x0e8fe6bc"},"kids_cap":{"t":"ptr","v":"0x0e8fe6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe6b0"},"kids_end":{"t":"ptr","v":"0x0e8fe6bc"},"kids_cap":{"t":"ptr","v":"0x0e8fe6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe608"},"kids_end":{"t":"ptr","v":"0x0e8fe614"},"kids_cap":{"t":"ptr","v":"0x0e8fe614"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe608"},"kids_end":{"t":"ptr","v":"0x0e8fe614"},"kids_cap":{"t":"ptr","v":"0x0e8fe614"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe5a8"},"kids_end":{"t":"ptr","v":"0x0e8fe5b4"},"kids_cap":{"t":"ptr","v":"0x0e8fe5b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe5a8"},"kids_end":{"t":"ptr","v":"0x0e8fe5b4"},"kids_cap":{"t":"ptr","v":"0x0e8fe5b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88cdd8"},"kids_end":{"t":"ptr","v":"0x0e88cdf0"},"kids_cap":{"t":"ptr","v":"0x0e88cdf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88cdd8"},"kids_end":{"t":"ptr","v":"0x0e88cdf0"},"kids_cap":{"t":"ptr","v":"0x0e88cdf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e9caab8"},"kids_end":{"t":"ptr","v":"0x0e9caac0"},"kids_cap":{"t":"ptr","v":"0x0e9caac0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e9caab8"},"kids_end":{"t":"ptr","v":"0x0e9caac0"},"kids_cap":{"t":"ptr","v":"0x0e9caac0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9cab18"},"kids_end":{"t":"ptr","v":"0x0e9cab20"},"kids_cap":{"t":"ptr","v":"0x0e9cab20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9cab18"},"kids_end":{"t":"ptr","v":"0x0e9cab20"},"kids_cap":{"t":"ptr","v":"0x0e9cab20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9caad8"},"kids_end":{"t":"ptr","v":"0x0e9caae0"},"kids_cap":{"t":"ptr","v":"0x0e9caae0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9caad8"},"kids_end":{"t":"ptr","v":"0x0e9caae0"},"kids_cap":{"t":"ptr","v":"0x0e9caae0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9ca958"},"kids_end":{"t":"ptr","v":"0x0e9ca960"},"kids_cap":{"t":"ptr","v":"0x0e9ca960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9ca958"},"kids_end":{"t":"ptr","v":"0x0e9ca960"},"kids_cap":{"t":"ptr","v":"0x0e9ca960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9caa78"},"kids_end":{"t":"ptr","v":"0x0e9caa7c"},"kids_cap":{"t":"ptr","v":"0x0e9caa7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9caa78"},"kids_end":{"t":"ptr","v":"0x0e9caa7c"},"kids_cap":{"t":"ptr","v":"0x0e9caa7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9caa88"},"kids_end":{"t":"ptr","v":"0x0e9caa8c"},"kids_cap":{"t":"ptr","v":"0x0e9caa8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9caa88"},"kids_end":{"t":"ptr","v":"0x0e9caa8c"},"kids_cap":{"t":"ptr","v":"0x0e9caa8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca998"},"kids_end":{"t":"ptr","v":"0x0e9ca99c"},"kids_cap":{"t":"ptr","v":"0x0e9ca99c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca998"},"kids_end":{"t":"ptr","v":"0x0e9ca99c"},"kids_cap":{"t":"ptr","v":"0x0e9ca99c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9ca948"},"kids_end":{"t":"ptr","v":"0x0e9ca94c"},"kids_cap":{"t":"ptr","v":"0x0e9ca94c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9ca948"},"kids_end":{"t":"ptr","v":"0x0e9ca94c"},"kids_cap":{"t":"ptr","v":"0x0e9ca94c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca968"},"kids_end":{"t":"ptr","v":"0x0e9ca96c"},"kids_cap":{"t":"ptr","v":"0x0e9ca96c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca968"},"kids_end":{"t":"ptr","v":"0x0e9ca96c"},"kids_cap":{"t":"ptr","v":"0x0e9ca96c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca9f8"},"kids_end":{"t":"ptr","v":"0x0e9ca9fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca9f8"},"kids_end":{"t":"ptr","v":"0x0e9ca9fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca978"},"kids_end":{"t":"ptr","v":"0x0e9ca97c"},"kids_cap":{"t":"ptr","v":"0x0e9ca97c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca978"},"kids_end":{"t":"ptr","v":"0x0e9ca97c"},"kids_cap":{"t":"ptr","v":"0x0e9ca97c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9caa18"},"kids_end":{"t":"ptr","v":"0x0e9caa1c"},"kids_cap":{"t":"ptr","v":"0x0e9caa1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9caa18"},"kids_end":{"t":"ptr","v":"0x0e9caa1c"},"kids_cap":{"t":"ptr","v":"0x0e9caa1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9caa28"},"kids_end":{"t":"ptr","v":"0x0e9caa2c"},"kids_cap":{"t":"ptr","v":"0x0e9caa2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9caa28"},"kids_end":{"t":"ptr","v":"0x0e9caa2c"},"kids_cap":{"t":"ptr","v":"0x0e9caa2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9cacd8"},"kids_end":{"t":"ptr","v":"0x0e9cacdc"},"kids_cap":{"t":"ptr","v":"0x0e9cacdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9cacd8"},"kids_end":{"t":"ptr","v":"0x0e9cacdc"},"kids_cap":{"t":"ptr","v":"0x0e9cacdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9caca8"},"kids_end":{"t":"ptr","v":"0x0e9cacac"},"kids_cap":{"t":"ptr","v":"0x0e9cacac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9caca8"},"kids_end":{"t":"ptr","v":"0x0e9cacac"},"kids_cap":{"t":"ptr","v":"0x0e9cacac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"before":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":96},"next_id":{"t":"i32","v":8},"vec_begin":{"t":"ptr","v":"0x0e9df768"},"vec_end":{"t":"ptr","v":"0x0e9df7c8"},"vec_cap":{"t":"ptr","v":"0x0e9df7c8"}}},"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":96},"next_id":{"t":"i32","v":8},"vec_begin":{"t":"ptr","v":"0x0e9df768"},"vec_end":{"t":"ptr","v":"0x0e9df7c8"},"vec_cap":{"t":"ptr","v":"0x0e9df7c8"}}}}},"ours":{"ret":null,"side":{"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":394},"next_index":{"t":"i64","v":230}}}},"overbudget":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9ca6b8"},"kids_end":{"t":"ptr","v":"0x0e9ca6bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9ca668"},"kids_end":{"t":"ptr","v":"0x0e9ca66c"},"kids_cap":{"t":"ptr","v":"0x0e9ca66c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe4a0"},"kids_end":{"t":"ptr","v":"0x0e8fe4ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":3064},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9ca708"},"kids_end":{"t":"ptr","v":"0x0e9ca70c"},"kids_cap":{"t":"ptr","v":"0x0e9ca70c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e9ca598"},"kids_end":{"t":"ptr","v":"0x0e9ca5a0"},"kids_cap":{"t":"ptr","v":"0x0e9ca5a0"},"unk10":{"t":"ptr","v":"0x3fc00000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x3f800000"}}}},"node[13]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9ca578"},"kids_end":{"t":"ptr","v":"0x0e9ca57c"},"kids_cap":{"t":"ptr","v":"0x0e9ca57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9ca5d8"},"kids_end":{"t":"ptr","v":"0x0e9ca5dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe4e8"},"kids_end":{"t":"ptr","v":"0x0e8fe4f4"},"kids_cap":{"t":"ptr","v":"0x0e8fe4f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe3f8"},"kids_end":{"t":"ptr","v":"0x0e8fe404"},"kids_cap":{"t":"ptr","v":"0x0e8fe404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9ca738"},"kids_end":{"t":"ptr","v":"0x0e9ca740"},"kids_cap":{"t":"ptr","v":"0x0e9ca740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe410"},"kids_end":{"t":"ptr","v":"0x0e8fe41c"},"kids_cap":{"t":"ptr","v":"0x0e8fe41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9ca698"},"kids_end":{"t":"ptr","v":"0x0e9ca69c"},"kids_cap":{"t":"ptr","v":"0x0e9ca69c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e9ca548"},"kids_end":{"t":"ptr","v":"0x0e9ca550"},"kids_cap":{"t":"ptr","v":"0x0e9ca550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe428"},"kids_end":{"t":"ptr","v":"0x0e8fe434"},"kids_cap":{"t":"ptr","v":"0x0e8fe434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe530"},"kids_end":{"t":"ptr","v":"0x0e8fe53c"},"kids_cap":{"t":"ptr","v":"0x0e8fe53c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9ca628"},"kids_end":{"t":"ptr","v":"0x0e9ca62c"},"kids_cap":{"t":"ptr","v":"0x0e9ca62c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe440"},"kids_end":{"t":"ptr","v":"0x0e8fe44c"},"kids_cap":{"t":"ptr","v":"0x0e8fe44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9ca608"},"kids_end":{"t":"ptr","v":"0x0e9ca60c"},"kids_cap":{"t":"ptr","v":"0x0e9ca60c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9ca5c8"},"kids_end":{"t":"ptr","v":"0x0e9ca5cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9ca6e8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9ca558"},"kids_end":{"t":"ptr","v":"0x0e9ca55c"},"kids_cap":{"t":"ptr","v":"0x0e9ca55c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe458"},"kids_end":{"t":"ptr","v":"0x0e8fe464"},"kids_cap":{"t":"ptr","v":"0x0e8fe464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9ca5a8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9ca5b8"},"kids_end":{"t":"ptr","v":"0x0e9ca5bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9ca6a8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9ca5e8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9ca5f8"},"kids_end":{"t":"ptr","v":"0x0e9ca5fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9ca568"},"kids_end":{"t":"ptr","v":"0x0e9ca56c"},"kids_cap":{"t":"ptr","v":"0x0e9ca56c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9ca588"},"kids_end":{"t":"ptr","v":"0x0e9ca58c"},"kids_cap":{"t":"ptr","v":"0x0e9ca58c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe470"},"kids_end":{"t":"ptr","v":"0x0e8fe47c"},"kids_cap":{"t":"ptr","v":"0x0e8fe47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e9ca688"},"kids_end":{"t":"ptr","v":"0x0e9ca690"},"kids_cap":{"t":"ptr","v":"0x0e9ca690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9ca618"},"kids_end":{"t":"ptr","v":"0x0e9ca61c"},"kids_cap":{"t":"ptr","v":"0x0e9ca61c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9ca728"},"kids_end":{"t":"ptr","v":"0x0e9ca730"},"kids_cap":{"t":"ptr","v":"0x0e9ca730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9ca638"},"kids_end":{"t":"ptr","v":"0x0e9ca63c"},"kids_cap":{"t":"ptr","v":"0x0e9ca63c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e9ca6c8"},"kids_end":{"t":"ptr","v":"0x0e9ca6cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fe6e0"},"kids_end":{"t":"ptr","v":"0x0e8fe6ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e99b508"},"kids_end":{"t":"ptr","v":"0x0e99b528"},"kids_cap":{"t":"ptr","v":"0x0e99b528"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9ca648"},"kids_end":{"t":"ptr","v":"0x0e9ca64c"},"kids_cap":{"t":"ptr","v":"0x0e9ca64c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9ca658"},"kids_end":{"t":"ptr","v":"0x0e9ca65c"},"kids_cap":{"t":"ptr","v":"0x0e9ca65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e9ca718"},"kids_end":{"t":"ptr","v":"0x0e9ca720"},"kids_cap":{"t":"ptr","v":"0x0e9ca720"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9ca678"},"kids_end":{"t":"ptr","v":"0x0e9ca67c"},"kids_cap":{"t":"ptr","v":"0x0e9ca67c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9ca6d8"},"kids_end":{"t":"ptr","v":"0x0e9ca6dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9ca6f8"},"kids_end":{"t":"ptr","v":"0x0e9ca6fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9ca878"},"kids_end":{"t":"ptr","v":"0x0e9ca87c"},"kids_cap":{"t":"ptr","v":"0x0e9ca87c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9ca768"},"kids_end":{"t":"ptr","v":"0x0e9ca770"},"kids_cap":{"t":"ptr","v":"0x0e9ca770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9ca858"},"kids_end":{"t":"ptr","v":"0x0e9ca85c"},"kids_cap":{"t":"ptr","v":"0x0e9ca85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88ce78"},"kids_end":{"t":"ptr","v":"0x0e88ce8c"},"kids_cap":{"t":"ptr","v":"0x0e88ce8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe650"},"kids_end":{"t":"ptr","v":"0x0e8fe65c"},"kids_cap":{"t":"ptr","v":"0x0e8fe65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9ca828"},"kids_end":{"t":"ptr","v":"0x0e9ca82c"},"kids_cap":{"t":"ptr","v":"0x0e9ca82c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9ca868"},"kids_end":{"t":"ptr","v":"0x0e9ca86c"},"kids_cap":{"t":"ptr","v":"0x0e9ca86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9ca8b8"},"kids_end":{"t":"ptr","v":"0x0e9ca8bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9ca788"},"kids_end":{"t":"ptr","v":"0x0e9ca78c"},"kids_cap":{"t":"ptr","v":"0x0e9ca78c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe668"},"kids_end":{"t":"ptr","v":"0x0e8fe674"},"kids_cap":{"t":"ptr","v":"0x0e8fe674"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9ca798"},"kids_end":{"t":"ptr","v":"0x0e9ca79c"},"kids_cap":{"t":"ptr","v":"0x0e9ca79c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe710"},"kids_end":{"t":"ptr","v":"0x0e8fe71c"},"kids_cap":{"t":"ptr","v":"0x0e8fe71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e9ca8d8"},"kids_end":{"t":"ptr","v":"0x0e9ca8e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe680"},"kids_end":{"t":"ptr","v":"0x0e8fe690"},"kids_cap":{"t":"ptr","v":"0x0e8fe690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9ca758"},"kids_end":{"t":"ptr","v":"0x0e9ca760"},"kids_cap":{"t":"ptr","v":"0x0e9ca760"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9ca928"},"kids_end":{"t":"ptr","v":"0x0e9ca92c"},"kids_cap":{"t":"ptr","v":"0x0e9ca92c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe7b8"},"kids_end":{"t":"ptr","v":"0x0e8fe7c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe7c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9ca778"},"kids_end":{"t":"ptr","v":"0x0e9ca77c"},"kids_cap":{"t":"ptr","v":"0x0e9ca77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9ca7a8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e9ca7b8"},"kids_end":{"t":"ptr","v":"0x0e9ca7bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe698"},"kids_end":{"t":"ptr","v":"0x0e8fe6a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":7500},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":4},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":2},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9ca7c8"},"kids_end":{"t":"ptr","v":"0x0e9ca7cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9ca918"},"kids_end":{"t":"ptr","v":"0x0e9ca91c"},"kids_cap":{"t":"ptr","v":"0x0e9ca91c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e9ca838"},"kids_end":{"t":"ptr","v":"0x0e9ca83c"},"kids_cap":{"t":"ptr","v":"0x0e9ca83c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9ca748"},"kids_end":{"t":"ptr","v":"0x0e9ca750"},"kids_cap":{"t":"ptr","v":"0x0e9ca750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9ca8a8"},"kids_end":{"t":"ptr","v":"0x0e9ca8b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9ca938"},"kids_end":{"t":"ptr","v":"0x0e9ca93c"},"kids_cap":{"t":"ptr","v":"0x0e9ca93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9ca848"},"kids_end":{"t":"ptr","v":"0x0e9ca84c"},"kids_cap":{"t":"ptr","v":"0x0e9ca84c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9ca888"},"kids_end":{"t":"ptr","v":"0x0e9ca88c"},"kids_cap":{"t":"ptr","v":"0x0e9ca88c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9ca8c8"},"kids_end":{"t":"ptr","v":"0x0e9ca8cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9ca898"},"kids_end":{"t":"ptr","v":"0x0e9ca89c"},"kids_cap":{"t":"ptr","v":"0x0e9ca89c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9ca8e8"},"kids_end":{"t":"ptr","v":"0x0e9ca8ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca8ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9ca7e8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9ca8f8"},"kids_end":{"t":"ptr","v":"0x0e9ca8fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e9ca818"},"kids_end":{"t":"ptr","v":"0x0e9ca81c"},"kids_cap":{"t":"ptr","v":"0x0e9ca81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e9ca7d8"},"kids_end":{"t":"ptr","v":"0x0e9ca7e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9ca908"},"kids_end":{"t":"ptr","v":"0x0e9ca910"},"kids_cap":{"t":"ptr","v":"0x0e9ca910"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9ca7f8"},"kids_end":{"t":"ptr","v":"0x0e9ca7fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9ca808"},"kids_end":{"t":"ptr","v":"0x0e9ca810"},"kids_cap":{"t":"ptr","v":"0x0e9ca810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9ca9a8"},"kids_end":{"t":"ptr","v":"0x0e9ca9b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9ca9b8"},"kids_end":{"t":"ptr","v":"0x0e9ca9bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe788"},"kids_end":{"t":"ptr","v":"0x0e8fe794"},"kids_cap":{"t":"ptr","v":"0x0e8fe794"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9caae8"},"kids_end":{"t":"ptr","v":"0x0e9caaec"},"kids_cap":{"t":"ptr","v":"0x0e9caaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e9caaa8"},"kids_end":{"t":"ptr","v":"0x0e9caab0"},"kids_cap":{"t":"ptr","v":"0x0e9caab0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9caa38"},"kids_end":{"t":"ptr","v":"0x0e9caa3c"},"kids_cap":{"t":"ptr","v":"0x0e9caa3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9caac8"},"kids_end":{"t":"ptr","v":"0x0e9caacc"},"kids_cap":{"t":"ptr","v":"0x0e9caacc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe860"},"kids_end":{"t":"ptr","v":"0x0e8fe870"},"kids_cap":{"t":"ptr","v":"0x0e8fe870"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e9caa98"},"kids_end":{"t":"ptr","v":"0x0e9caaa0"},"kids_cap":{"t":"ptr","v":"0x0e9caaa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9ca988"},"kids_end":{"t":"ptr","v":"0x0e9ca98c"},"kids_cap":{"t":"ptr","v":"0x0e9ca98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe878"},"kids_end":{"t":"ptr","v":"0x0e8fe888"},"kids_cap":{"t":"ptr","v":"0x0e8fe888"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9cab28"},"kids_end":{"t":"ptr","v":"0x0e9cab30"},"kids_cap":{"t":"ptr","v":"0x0e9cab30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9caaf8"},"kids_end":{"t":"ptr","v":"0x0e9caafc"},"kids_cap":{"t":"ptr","v":"0x0e9caafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e9cab38"},"kids_end":{"t":"ptr","v":"0x0e9cab3c"},"kids_cap":{"t":"ptr","v":"0x0e9cab3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e9cab08"},"kids_end":{"t":"ptr","v":"0x0e9cab10"},"kids_cap":{"t":"ptr","v":"0x0e9cab10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9caa08"},"kids_end":{"t":"ptr","v":"0x0e9caa0c"},"kids_cap":{"t":"ptr","v":"0x0e9caa0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9ca9c8"},"kids_end":{"t":"ptr","v":"0x0e9ca9d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e8fe7d0"},"kids_end":{"t":"ptr","v":"0x0e8fe7e0"},"kids_cap":{"t":"ptr","v":"0x0e8fe7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9ca9d8"},"kids_end":{"t":"ptr","v":"0x0e9ca9dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9caa58"},"kids_end":{"t":"ptr","v":"0x0e9caa5c"},"kids_cap":{"t":"ptr","v":"0x0e9caa5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9caa48"},"kids_end":{"t":"ptr","v":"0x0e9caa50"},"kids_cap":{"t":"ptr","v":"0x0e9caa50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9caa68"},"kids_end":{"t":"ptr","v":"0x0e9caa6c"},"kids_cap":{"t":"ptr","v":"0x0e9caa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9ca9e8"},"kids_end":{"t":"ptr","v":"0x0e9ca9ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca9ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe590"},"kids_end":{"t":"ptr","v":"0x0e8fe59c"},"kids_cap":{"t":"ptr","v":"0x0e8fe59c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe5f0"},"kids_end":{"t":"ptr","v":"0x0e8fe5fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe6b0"},"kids_end":{"t":"ptr","v":"0x0e8fe6bc"},"kids_cap":{"t":"ptr","v":"0x0e8fe6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe608"},"kids_end":{"t":"ptr","v":"0x0e8fe614"},"kids_cap":{"t":"ptr","v":"0x0e8fe614"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe5a8"},"kids_end":{"t":"ptr","v":"0x0e8fe5b4"},"kids_cap":{"t":"ptr","v":"0x0e8fe5b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88cdd8"},"kids_end":{"t":"ptr","v":"0x0e88cdf0"},"kids_cap":{"t":"ptr","v":"0x0e88cdf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e9caab8"},"kids_end":{"t":"ptr","v":"0x0e9caac0"},"kids_cap":{"t":"ptr","v":"0x0e9caac0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9cab18"},"kids_end":{"t":"ptr","v":"0x0e9cab20"},"kids_cap":{"t":"ptr","v":"0x0e9cab20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9caad8"},"kids_end":{"t":"ptr","v":"0x0e9caae0"},"kids_cap":{"t":"ptr","v":"0x0e9caae0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9ca958"},"kids_end":{"t":"ptr","v":"0x0e9ca960"},"kids_cap":{"t":"ptr","v":"0x0e9ca960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9caa78"},"kids_end":{"t":"ptr","v":"0x0e9caa7c"},"kids_cap":{"t":"ptr","v":"0x0e9caa7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9caa88"},"kids_end":{"t":"ptr","v":"0x0e9caa8c"},"kids_cap":{"t":"ptr","v":"0x0e9caa8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca998"},"kids_end":{"t":"ptr","v":"0x0e9ca99c"},"kids_cap":{"t":"ptr","v":"0x0e9ca99c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9ca948"},"kids_end":{"t":"ptr","v":"0x0e9ca94c"},"kids_cap":{"t":"ptr","v":"0x0e9ca94c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca968"},"kids_end":{"t":"ptr","v":"0x0e9ca96c"},"kids_cap":{"t":"ptr","v":"0x0e9ca96c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca9f8"},"kids_end":{"t":"ptr","v":"0x0e9ca9fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca978"},"kids_end":{"t":"ptr","v":"0x0e9ca97c"},"kids_cap":{"t":"ptr","v":"0x0e9ca97c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9caa18"},"kids_end":{"t":"ptr","v":"0x0e9caa1c"},"kids_cap":{"t":"ptr","v":"0x0e9caa1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9caa28"},"kids_end":{"t":"ptr","v":"0x0e9caa2c"},"kids_cap":{"t":"ptr","v":"0x0e9caa2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9cacd8"},"kids_end":{"t":"ptr","v":"0x0e9cacdc"},"kids_cap":{"t":"ptr","v":"0x0e9cacdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9caca8"},"kids_end":{"t":"ptr","v":"0x0e9cacac"},"kids_cap":{"t":"ptr","v":"0x0e9cacac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":96},"next_id":{"t":"i32","v":8},"vec_begin":{"t":"ptr","v":"0x0e9df768"},"vec_end":{"t":"ptr","v":"0x0e9df7c8"},"vec_cap":{"t":"ptr","v":"0x0e9df7c8"}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["player","tree_header"],"undeclared":[],"n":0}} +{"ts":413554648,"hook":"Game::TechTree::ProcessResearch","mode":"compare","call_id":7,"thread":1412,"depth":0,"args":[{"t":"ptr","v":"0x0e93b6c0","n":"tree"},{"t":"ptr","v":"0x0e906b68","n":"owner"},{"t":"i32","v":0,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e96ad78","n":"rng"},{"t":"i32","v":393,"n":"rng_left_in"},{"t":"list","v":[{"t":"struct","v":{"tech_id":{"t":"i32","v":90},"points":{"t":"i32","v":0}}}],"n":"alloc"},{"t":"i32","v":0,"n":"overbudget_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":393},"next_index":{"t":"i64","v":231}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":393},"next_index":{"t":"i64","v":231}}}},"overbudget":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9cb2e8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9cb2e8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cb1a8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cb1a8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cb158"},"kids_end":{"t":"ptr","v":"0x0e9cb15c"},"kids_cap":{"t":"ptr","v":"0x0e9cb15c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cb158"},"kids_end":{"t":"ptr","v":"0x0e9cb15c"},"kids_cap":{"t":"ptr","v":"0x0e9cb15c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9cb168"},"kids_end":{"t":"ptr","v":"0x0e9cb170"},"kids_cap":{"t":"ptr","v":"0x0e9cb170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9cb168"},"kids_end":{"t":"ptr","v":"0x0e9cb170"},"kids_cap":{"t":"ptr","v":"0x0e9cb170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9cb178"},"kids_end":{"t":"ptr","v":"0x0e9cb180"},"kids_cap":{"t":"ptr","v":"0x0e9cb180"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9cb178"},"kids_end":{"t":"ptr","v":"0x0e9cb180"},"kids_cap":{"t":"ptr","v":"0x0e9cb180"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cb188"},"kids_end":{"t":"ptr","v":"0x0e9cb18c"},"kids_cap":{"t":"ptr","v":"0x0e9cb18c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cb188"},"kids_end":{"t":"ptr","v":"0x0e9cb18c"},"kids_cap":{"t":"ptr","v":"0x0e9cb18c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9cb1b8"},"kids_end":{"t":"ptr","v":"0x0e9cb1bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9cb1b8"},"kids_end":{"t":"ptr","v":"0x0e9cb1bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9cb288"},"kids_end":{"t":"ptr","v":"0x0e9cb28c"},"kids_cap":{"t":"ptr","v":"0x0e9cb28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9cb288"},"kids_end":{"t":"ptr","v":"0x0e9cb28c"},"kids_cap":{"t":"ptr","v":"0x0e9cb28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe8f0"},"kids_end":{"t":"ptr","v":"0x0e8fe8fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe8f0"},"kids_end":{"t":"ptr","v":"0x0e8fe8fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cb2d8"},"kids_end":{"t":"ptr","v":"0x0e9cb2e0"},"kids_cap":{"t":"ptr","v":"0x0e9cb2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cb2d8"},"kids_end":{"t":"ptr","v":"0x0e9cb2e0"},"kids_cap":{"t":"ptr","v":"0x0e9cb2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe950"},"kids_end":{"t":"ptr","v":"0x0e8fe960"},"kids_cap":{"t":"ptr","v":"0x0e8fe960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe950"},"kids_end":{"t":"ptr","v":"0x0e8fe960"},"kids_cap":{"t":"ptr","v":"0x0e8fe960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cb1c8"},"kids_end":{"t":"ptr","v":"0x0e9cb1cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cb1c8"},"kids_end":{"t":"ptr","v":"0x0e9cb1cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cb1d8"},"kids_end":{"t":"ptr","v":"0x0e9cb1dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cb1d8"},"kids_end":{"t":"ptr","v":"0x0e9cb1dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fe908"},"kids_end":{"t":"ptr","v":"0x0e8fe914"},"kids_cap":{"t":"ptr","v":"0x0e8fe914"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fe908"},"kids_end":{"t":"ptr","v":"0x0e8fe914"},"kids_cap":{"t":"ptr","v":"0x0e8fe914"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9cb238"},"kids_end":{"t":"ptr","v":"0x0e9cb23c"},"kids_cap":{"t":"ptr","v":"0x0e9cb23c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9cb238"},"kids_end":{"t":"ptr","v":"0x0e9cb23c"},"kids_cap":{"t":"ptr","v":"0x0e9cb23c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cb1e8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cb1e8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9cb2f8"},"kids_end":{"t":"ptr","v":"0x0e9cb2fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb2fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9cb2f8"},"kids_end":{"t":"ptr","v":"0x0e9cb2fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb2fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe968"},"kids_end":{"t":"ptr","v":"0x0e8fe974"},"kids_cap":{"t":"ptr","v":"0x0e8fe974"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe968"},"kids_end":{"t":"ptr","v":"0x0e8fe974"},"kids_cap":{"t":"ptr","v":"0x0e8fe974"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fcce8"},"kids_end":{"t":"ptr","v":"0x0e8fccf8"},"kids_cap":{"t":"ptr","v":"0x0e8fccf8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fcce8"},"kids_end":{"t":"ptr","v":"0x0e8fccf8"},"kids_cap":{"t":"ptr","v":"0x0e8fccf8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cb318"},"kids_end":{"t":"ptr","v":"0x0e9cb31c"},"kids_cap":{"t":"ptr","v":"0x0e9cb31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cb318"},"kids_end":{"t":"ptr","v":"0x0e9cb31c"},"kids_cap":{"t":"ptr","v":"0x0e9cb31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cb248"},"kids_end":{"t":"ptr","v":"0x0e9cb24c"},"kids_cap":{"t":"ptr","v":"0x0e9cb24c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cb248"},"kids_end":{"t":"ptr","v":"0x0e9cb24c"},"kids_cap":{"t":"ptr","v":"0x0e9cb24c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb1f8"},"kids_end":{"t":"ptr","v":"0x0e9cb1fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb1f8"},"kids_end":{"t":"ptr","v":"0x0e9cb1fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb308"},"kids_end":{"t":"ptr","v":"0x0e9cb30c"},"kids_cap":{"t":"ptr","v":"0x0e9cb30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb308"},"kids_end":{"t":"ptr","v":"0x0e9cb30c"},"kids_cap":{"t":"ptr","v":"0x0e9cb30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9cb268"},"kids_end":{"t":"ptr","v":"0x0e9cb270"},"kids_cap":{"t":"ptr","v":"0x0e9cb270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9cb268"},"kids_end":{"t":"ptr","v":"0x0e9cb270"},"kids_cap":{"t":"ptr","v":"0x0e9cb270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fcd18"},"kids_end":{"t":"ptr","v":"0x0e8fcd24"},"kids_cap":{"t":"ptr","v":"0x0e8fcd24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fcd18"},"kids_end":{"t":"ptr","v":"0x0e8fcd24"},"kids_cap":{"t":"ptr","v":"0x0e8fcd24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb208"},"kids_end":{"t":"ptr","v":"0x0e9cb210"},"kids_cap":{"t":"ptr","v":"0x0e9cb210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb208"},"kids_end":{"t":"ptr","v":"0x0e9cb210"},"kids_cap":{"t":"ptr","v":"0x0e9cb210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fcb50"},"kids_end":{"t":"ptr","v":"0x0e8fcb5c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fcb50"},"kids_end":{"t":"ptr","v":"0x0e8fcb5c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fcad8"},"kids_end":{"t":"ptr","v":"0x0e8fcae4"},"kids_cap":{"t":"ptr","v":"0x0e8fcae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fcad8"},"kids_end":{"t":"ptr","v":"0x0e8fcae4"},"kids_cap":{"t":"ptr","v":"0x0e8fcae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e9cb218"},"kids_end":{"t":"ptr","v":"0x0e9cb220"},"kids_cap":{"t":"ptr","v":"0x0e9cb220"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e9cb218"},"kids_end":{"t":"ptr","v":"0x0e9cb220"},"kids_cap":{"t":"ptr","v":"0x0e9cb220"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9cb328"},"kids_end":{"t":"ptr","v":"0x0e9cb32c"},"kids_cap":{"t":"ptr","v":"0x0e9cb32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9cb328"},"kids_end":{"t":"ptr","v":"0x0e9cb32c"},"kids_cap":{"t":"ptr","v":"0x0e9cb32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cb278"},"kids_end":{"t":"ptr","v":"0x0e9cb27c"},"kids_cap":{"t":"ptr","v":"0x0e9cb27c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cb278"},"kids_end":{"t":"ptr","v":"0x0e9cb27c"},"kids_cap":{"t":"ptr","v":"0x0e9cb27c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fcc40"},"kids_end":{"t":"ptr","v":"0x0e8fcc4c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fcc40"},"kids_end":{"t":"ptr","v":"0x0e8fcc4c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9cb298"},"kids_end":{"t":"ptr","v":"0x0e9cb29c"},"kids_cap":{"t":"ptr","v":"0x0e9cb29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9cb298"},"kids_end":{"t":"ptr","v":"0x0e9cb29c"},"kids_cap":{"t":"ptr","v":"0x0e9cb29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb2a8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb2a8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9cb3b8"},"kids_end":{"t":"ptr","v":"0x0e9cb3bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9cb3b8"},"kids_end":{"t":"ptr","v":"0x0e9cb3bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cb358"},"kids_end":{"t":"ptr","v":"0x0e9cb35c"},"kids_cap":{"t":"ptr","v":"0x0e9cb35c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cb358"},"kids_end":{"t":"ptr","v":"0x0e9cb35c"},"kids_cap":{"t":"ptr","v":"0x0e9cb35c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fcb68"},"kids_end":{"t":"ptr","v":"0x0e8fcb74"},"kids_cap":{"t":"ptr","v":"0x0e8fcb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fcb68"},"kids_end":{"t":"ptr","v":"0x0e8fcb74"},"kids_cap":{"t":"ptr","v":"0x0e8fcb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9cb448"},"kids_end":{"t":"ptr","v":"0x0e9cb44c"},"kids_cap":{"t":"ptr","v":"0x0e9cb44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9cb448"},"kids_end":{"t":"ptr","v":"0x0e9cb44c"},"kids_cap":{"t":"ptr","v":"0x0e9cb44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb408"},"kids_end":{"t":"ptr","v":"0x0e9cb40c"},"kids_cap":{"t":"ptr","v":"0x0e9cb40c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb408"},"kids_end":{"t":"ptr","v":"0x0e9cb40c"},"kids_cap":{"t":"ptr","v":"0x0e9cb40c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb3e8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb3e8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb4a8"},"kids_end":{"t":"ptr","v":"0x0e9cb4ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb4a8"},"kids_end":{"t":"ptr","v":"0x0e9cb4ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb4d8"},"kids_end":{"t":"ptr","v":"0x0e9cb4dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb4d8"},"kids_end":{"t":"ptr","v":"0x0e9cb4dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb498"},"kids_end":{"t":"ptr","v":"0x0e9cb49c"},"kids_cap":{"t":"ptr","v":"0x0e9cb49c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb498"},"kids_end":{"t":"ptr","v":"0x0e9cb49c"},"kids_cap":{"t":"ptr","v":"0x0e9cb49c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9cb3f8"},"kids_end":{"t":"ptr","v":"0x0e9cb3fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9cb3f8"},"kids_end":{"t":"ptr","v":"0x0e9cb3fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fcaf0"},"kids_end":{"t":"ptr","v":"0x0e8fcafc"},"kids_cap":{"t":"ptr","v":"0x0e8fcafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fcaf0"},"kids_end":{"t":"ptr","v":"0x0e8fcafc"},"kids_cap":{"t":"ptr","v":"0x0e8fcafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fcb08"},"kids_end":{"t":"ptr","v":"0x0e8fcb14"},"kids_cap":{"t":"ptr","v":"0x0e8fcb14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fcb08"},"kids_end":{"t":"ptr","v":"0x0e8fcb14"},"kids_cap":{"t":"ptr","v":"0x0e8fcb14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb3a8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb3a8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb488"},"kids_end":{"t":"ptr","v":"0x0e9cb490"},"kids_cap":{"t":"ptr","v":"0x0e9cb490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb488"},"kids_end":{"t":"ptr","v":"0x0e9cb490"},"kids_cap":{"t":"ptr","v":"0x0e9cb490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cb4c8"},"kids_end":{"t":"ptr","v":"0x0e9cb4cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cb4c8"},"kids_end":{"t":"ptr","v":"0x0e9cb4cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88ce18"},"kids_end":{"t":"ptr","v":"0x0e88ce2c"},"kids_cap":{"t":"ptr","v":"0x0e88ce2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88ce18"},"kids_end":{"t":"ptr","v":"0x0e88ce2c"},"kids_cap":{"t":"ptr","v":"0x0e88ce2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fcb80"},"kids_end":{"t":"ptr","v":"0x0e8fcb8c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fcb80"},"kids_end":{"t":"ptr","v":"0x0e8fcb8c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969de0"},"kids_end":{"t":"ptr","v":"0x0e969e04"},"kids_cap":{"t":"ptr","v":"0x0e969e04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969de0"},"kids_end":{"t":"ptr","v":"0x0e969e04"},"kids_cap":{"t":"ptr","v":"0x0e969e04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fcc28"},"kids_end":{"t":"ptr","v":"0x0e8fcc34"},"kids_cap":{"t":"ptr","v":"0x0e8fcc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fcc28"},"kids_end":{"t":"ptr","v":"0x0e8fcc34"},"kids_cap":{"t":"ptr","v":"0x0e8fcc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[86]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921a90"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e9cb348"},"kids_end":{"t":"ptr","v":"0x0e9cb34c"},"kids_cap":{"t":"ptr","v":"0x0e9cb34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921a90"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e9cb348"},"kids_end":{"t":"ptr","v":"0x0e9cb34c"},"kids_cap":{"t":"ptr","v":"0x0e9cb34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[87]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04922318"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e9cb388"},"kids_end":{"t":"ptr","v":"0x0e9cb390"},"kids_cap":{"t":"ptr","v":"0x0e9cb390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04922318"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e9cb388"},"kids_end":{"t":"ptr","v":"0x0e9cb390"},"kids_cap":{"t":"ptr","v":"0x0e9cb390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[88]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920ab8"},"tech_id":{"t":"i32","v":88},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920ab8"},"tech_id":{"t":"i32","v":88},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb4b8"},"kids_end":{"t":"ptr","v":"0x0e9cb4bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb4b8"},"kids_end":{"t":"ptr","v":"0x0e9cb4bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9cb458"},"kids_end":{"t":"ptr","v":"0x0e9cb45c"},"kids_cap":{"t":"ptr","v":"0x0e9cb45c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9cb458"},"kids_end":{"t":"ptr","v":"0x0e9cb45c"},"kids_cap":{"t":"ptr","v":"0x0e9cb45c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb468"},"kids_end":{"t":"ptr","v":"0x0e9cb46c"},"kids_cap":{"t":"ptr","v":"0x0e9cb46c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb468"},"kids_end":{"t":"ptr","v":"0x0e9cb46c"},"kids_cap":{"t":"ptr","v":"0x0e9cb46c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb478"},"kids_end":{"t":"ptr","v":"0x0e9cb47c"},"kids_cap":{"t":"ptr","v":"0x0e9cb47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb478"},"kids_end":{"t":"ptr","v":"0x0e9cb47c"},"kids_cap":{"t":"ptr","v":"0x0e9cb47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb3d8"},"kids_end":{"t":"ptr","v":"0x0e9cb3dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb3d8"},"kids_end":{"t":"ptr","v":"0x0e9cb3dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb438"},"kids_end":{"t":"ptr","v":"0x0e9cb440"},"kids_cap":{"t":"ptr","v":"0x0e9cb440"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb438"},"kids_end":{"t":"ptr","v":"0x0e9cb440"},"kids_cap":{"t":"ptr","v":"0x0e9cb440"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb368"},"kids_end":{"t":"ptr","v":"0x0e9cb370"},"kids_cap":{"t":"ptr","v":"0x0e9cb370"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb368"},"kids_end":{"t":"ptr","v":"0x0e9cb370"},"kids_cap":{"t":"ptr","v":"0x0e9cb370"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d378"},"kids_end":{"t":"ptr","v":"0x0e88d38c"},"kids_cap":{"t":"ptr","v":"0x0e88d38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d378"},"kids_end":{"t":"ptr","v":"0x0e88d38c"},"kids_cap":{"t":"ptr","v":"0x0e88d38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fcb20"},"kids_end":{"t":"ptr","v":"0x0e8fcb2c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fcb20"},"kids_end":{"t":"ptr","v":"0x0e8fcb2c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb378"},"kids_end":{"t":"ptr","v":"0x0e9cb37c"},"kids_cap":{"t":"ptr","v":"0x0e9cb37c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb378"},"kids_end":{"t":"ptr","v":"0x0e9cb37c"},"kids_cap":{"t":"ptr","v":"0x0e9cb37c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb398"},"kids_end":{"t":"ptr","v":"0x0e9cb39c"},"kids_cap":{"t":"ptr","v":"0x0e9cb39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb398"},"kids_end":{"t":"ptr","v":"0x0e9cb39c"},"kids_cap":{"t":"ptr","v":"0x0e9cb39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9cb3c8"},"kids_end":{"t":"ptr","v":"0x0e9cb3cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9cb3c8"},"kids_end":{"t":"ptr","v":"0x0e9cb3cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9cb418"},"kids_end":{"t":"ptr","v":"0x0e9cb41c"},"kids_cap":{"t":"ptr","v":"0x0e9cb41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9cb418"},"kids_end":{"t":"ptr","v":"0x0e9cb41c"},"kids_cap":{"t":"ptr","v":"0x0e9cb41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e9cb428"},"kids_end":{"t":"ptr","v":"0x0e9cb430"},"kids_cap":{"t":"ptr","v":"0x0e9cb430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e9cb428"},"kids_end":{"t":"ptr","v":"0x0e9cb430"},"kids_cap":{"t":"ptr","v":"0x0e9cb430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fccd0"},"kids_end":{"t":"ptr","v":"0x0e8fccdc"},"kids_cap":{"t":"ptr","v":"0x0e8fccdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fccd0"},"kids_end":{"t":"ptr","v":"0x0e8fccdc"},"kids_cap":{"t":"ptr","v":"0x0e8fccdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e9c95d8"},"kids_end":{"t":"ptr","v":"0x0e9c95e0"},"kids_cap":{"t":"ptr","v":"0x0e9c95e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e9c95d8"},"kids_end":{"t":"ptr","v":"0x0e9c95e0"},"kids_cap":{"t":"ptr","v":"0x0e9c95e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9c9638"},"kids_end":{"t":"ptr","v":"0x0e9c9640"},"kids_cap":{"t":"ptr","v":"0x0e9c9640"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9c9638"},"kids_end":{"t":"ptr","v":"0x0e9c9640"},"kids_cap":{"t":"ptr","v":"0x0e9c9640"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e9c9718"},"kids_end":{"t":"ptr","v":"0x0e9c971c"},"kids_cap":{"t":"ptr","v":"0x0e9c971c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e9c9718"},"kids_end":{"t":"ptr","v":"0x0e9c971c"},"kids_cap":{"t":"ptr","v":"0x0e9c971c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fcbf8"},"kids_end":{"t":"ptr","v":"0x0e8fcc04"},"kids_cap":{"t":"ptr","v":"0x0e8fcc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fcbf8"},"kids_end":{"t":"ptr","v":"0x0e8fcc04"},"kids_cap":{"t":"ptr","v":"0x0e8fcc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fcb38"},"kids_end":{"t":"ptr","v":"0x0e8fcb44"},"kids_cap":{"t":"ptr","v":"0x0e8fcb44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fcb38"},"kids_end":{"t":"ptr","v":"0x0e8fcb44"},"kids_cap":{"t":"ptr","v":"0x0e8fcb44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fcb98"},"kids_end":{"t":"ptr","v":"0x0e8fcba8"},"kids_cap":{"t":"ptr","v":"0x0e8fcba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fcb98"},"kids_end":{"t":"ptr","v":"0x0e8fcba8"},"kids_cap":{"t":"ptr","v":"0x0e8fcba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9c96a8"},"kids_end":{"t":"ptr","v":"0x0e9c96b0"},"kids_cap":{"t":"ptr","v":"0x0e9c96b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9c96a8"},"kids_end":{"t":"ptr","v":"0x0e9c96b0"},"kids_cap":{"t":"ptr","v":"0x0e9c96b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9c9588"},"kids_end":{"t":"ptr","v":"0x0e9c958c"},"kids_cap":{"t":"ptr","v":"0x0e9c958c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9c9588"},"kids_end":{"t":"ptr","v":"0x0e9c958c"},"kids_cap":{"t":"ptr","v":"0x0e9c958c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fcbe0"},"kids_end":{"t":"ptr","v":"0x0e8fcbec"},"kids_cap":{"t":"ptr","v":"0x0e8fcbec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fcbe0"},"kids_end":{"t":"ptr","v":"0x0e8fcbec"},"kids_cap":{"t":"ptr","v":"0x0e8fcbec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9c96f8"},"kids_end":{"t":"ptr","v":"0x0e9c96fc"},"kids_cap":{"t":"ptr","v":"0x0e9c96fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9c96f8"},"kids_end":{"t":"ptr","v":"0x0e9c96fc"},"kids_cap":{"t":"ptr","v":"0x0e9c96fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9c9598"},"kids_end":{"t":"ptr","v":"0x0e9c959c"},"kids_cap":{"t":"ptr","v":"0x0e9c959c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9c9598"},"kids_end":{"t":"ptr","v":"0x0e9c959c"},"kids_cap":{"t":"ptr","v":"0x0e9c959c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e9c95e8"},"kids_end":{"t":"ptr","v":"0x0e9c95ec"},"kids_cap":{"t":"ptr","v":"0x0e9c95ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e9c95e8"},"kids_end":{"t":"ptr","v":"0x0e9c95ec"},"kids_cap":{"t":"ptr","v":"0x0e9c95ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e9c96d8"},"kids_end":{"t":"ptr","v":"0x0e9c96e0"},"kids_cap":{"t":"ptr","v":"0x0e9c96e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e9c96d8"},"kids_end":{"t":"ptr","v":"0x0e9c96e0"},"kids_cap":{"t":"ptr","v":"0x0e9c96e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9c9618"},"kids_end":{"t":"ptr","v":"0x0e9c961c"},"kids_cap":{"t":"ptr","v":"0x0e9c961c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9c9618"},"kids_end":{"t":"ptr","v":"0x0e9c961c"},"kids_cap":{"t":"ptr","v":"0x0e9c961c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9c9548"},"kids_end":{"t":"ptr","v":"0x0e9c9550"},"kids_cap":{"t":"ptr","v":"0x0e9c9550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9c9548"},"kids_end":{"t":"ptr","v":"0x0e9c9550"},"kids_cap":{"t":"ptr","v":"0x0e9c9550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fcd00"},"kids_end":{"t":"ptr","v":"0x0e8fcd0c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fcd00"},"kids_end":{"t":"ptr","v":"0x0e8fcd0c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e9c95a8"},"kids_end":{"t":"ptr","v":"0x0e9c95ac"},"kids_cap":{"t":"ptr","v":"0x0e9c95ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e9c95a8"},"kids_end":{"t":"ptr","v":"0x0e9c95ac"},"kids_cap":{"t":"ptr","v":"0x0e9c95ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9c9708"},"kids_end":{"t":"ptr","v":"0x0e9c9710"},"kids_cap":{"t":"ptr","v":"0x0e9c9710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9c9708"},"kids_end":{"t":"ptr","v":"0x0e9c9710"},"kids_cap":{"t":"ptr","v":"0x0e9c9710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e9c9558"},"kids_end":{"t":"ptr","v":"0x0e9c955c"},"kids_cap":{"t":"ptr","v":"0x0e9c955c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e9c9558"},"kids_end":{"t":"ptr","v":"0x0e9c955c"},"kids_cap":{"t":"ptr","v":"0x0e9c955c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e9c9698"},"kids_end":{"t":"ptr","v":"0x0e9c96a0"},"kids_cap":{"t":"ptr","v":"0x0e9c96a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e9c9698"},"kids_end":{"t":"ptr","v":"0x0e9c96a0"},"kids_cap":{"t":"ptr","v":"0x0e9c96a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9c9648"},"kids_end":{"t":"ptr","v":"0x0e9c9650"},"kids_cap":{"t":"ptr","v":"0x0e9c9650"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9c9648"},"kids_end":{"t":"ptr","v":"0x0e9c9650"},"kids_cap":{"t":"ptr","v":"0x0e9c9650"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e9c9738"},"kids_end":{"t":"ptr","v":"0x0e9c9740"},"kids_cap":{"t":"ptr","v":"0x0e9c9740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e9c9738"},"kids_end":{"t":"ptr","v":"0x0e9c9740"},"kids_cap":{"t":"ptr","v":"0x0e9c9740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e9c9728"},"kids_end":{"t":"ptr","v":"0x0e9c9730"},"kids_cap":{"t":"ptr","v":"0x0e9c9730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e9c9728"},"kids_end":{"t":"ptr","v":"0x0e9c9730"},"kids_cap":{"t":"ptr","v":"0x0e9c9730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e9c96b8"},"kids_end":{"t":"ptr","v":"0x0e9c96bc"},"kids_cap":{"t":"ptr","v":"0x0e9c96bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e9c96b8"},"kids_end":{"t":"ptr","v":"0x0e9c96bc"},"kids_cap":{"t":"ptr","v":"0x0e9c96bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9c9568"},"kids_end":{"t":"ptr","v":"0x0e9c956c"},"kids_cap":{"t":"ptr","v":"0x0e9c956c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9c9568"},"kids_end":{"t":"ptr","v":"0x0e9c956c"},"kids_cap":{"t":"ptr","v":"0x0e9c956c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9c9578"},"kids_end":{"t":"ptr","v":"0x0e9c9580"},"kids_cap":{"t":"ptr","v":"0x0e9c9580"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9c9578"},"kids_end":{"t":"ptr","v":"0x0e9c9580"},"kids_cap":{"t":"ptr","v":"0x0e9c9580"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9c95c8"},"kids_end":{"t":"ptr","v":"0x0e9c95d0"},"kids_cap":{"t":"ptr","v":"0x0e9c95d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9c95c8"},"kids_end":{"t":"ptr","v":"0x0e9c95d0"},"kids_cap":{"t":"ptr","v":"0x0e9c95d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9c95b8"},"kids_end":{"t":"ptr","v":"0x0e9c95bc"},"kids_cap":{"t":"ptr","v":"0x0e9c95bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9c95b8"},"kids_end":{"t":"ptr","v":"0x0e9c95bc"},"kids_cap":{"t":"ptr","v":"0x0e9c95bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e9c95f8"},"kids_end":{"t":"ptr","v":"0x0e9c95fc"},"kids_cap":{"t":"ptr","v":"0x0e9c95fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e9c95f8"},"kids_end":{"t":"ptr","v":"0x0e9c95fc"},"kids_cap":{"t":"ptr","v":"0x0e9c95fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9c9608"},"kids_end":{"t":"ptr","v":"0x0e9c9610"},"kids_cap":{"t":"ptr","v":"0x0e9c9610"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9c9608"},"kids_end":{"t":"ptr","v":"0x0e9c9610"},"kids_cap":{"t":"ptr","v":"0x0e9c9610"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9c9628"},"kids_end":{"t":"ptr","v":"0x0e9c962c"},"kids_cap":{"t":"ptr","v":"0x0e9c962c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9c9628"},"kids_end":{"t":"ptr","v":"0x0e9c962c"},"kids_cap":{"t":"ptr","v":"0x0e9c962c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e9c9658"},"kids_end":{"t":"ptr","v":"0x0e9c965c"},"kids_cap":{"t":"ptr","v":"0x0e9c965c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e9c9658"},"kids_end":{"t":"ptr","v":"0x0e9c965c"},"kids_cap":{"t":"ptr","v":"0x0e9c965c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9c9668"},"kids_end":{"t":"ptr","v":"0x0e9c9670"},"kids_cap":{"t":"ptr","v":"0x0e9c9670"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9c9668"},"kids_end":{"t":"ptr","v":"0x0e9c9670"},"kids_cap":{"t":"ptr","v":"0x0e9c9670"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9c9678"},"kids_end":{"t":"ptr","v":"0x0e9c967c"},"kids_cap":{"t":"ptr","v":"0x0e9c967c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9c9678"},"kids_end":{"t":"ptr","v":"0x0e9c967c"},"kids_cap":{"t":"ptr","v":"0x0e9c967c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e9c96c8"},"kids_end":{"t":"ptr","v":"0x0e9c96cc"},"kids_cap":{"t":"ptr","v":"0x0e9c96cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e9c96c8"},"kids_end":{"t":"ptr","v":"0x0e9c96cc"},"kids_cap":{"t":"ptr","v":"0x0e9c96cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fcbb0"},"kids_end":{"t":"ptr","v":"0x0e8fcbbc"},"kids_cap":{"t":"ptr","v":"0x0e8fcbbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fcbb0"},"kids_end":{"t":"ptr","v":"0x0e8fcbbc"},"kids_cap":{"t":"ptr","v":"0x0e8fcbbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fcd78"},"kids_end":{"t":"ptr","v":"0x0e8fcd88"},"kids_cap":{"t":"ptr","v":"0x0e8fcd88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fcd78"},"kids_end":{"t":"ptr","v":"0x0e8fcd88"},"kids_cap":{"t":"ptr","v":"0x0e8fcd88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9c96e8"},"kids_end":{"t":"ptr","v":"0x0e9c96f0"},"kids_cap":{"t":"ptr","v":"0x0e9c96f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9c96e8"},"kids_end":{"t":"ptr","v":"0x0e9c96f0"},"kids_cap":{"t":"ptr","v":"0x0e9c96f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e9c9688"},"kids_end":{"t":"ptr","v":"0x0e9c9690"},"kids_cap":{"t":"ptr","v":"0x0e9c9690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e9c9688"},"kids_end":{"t":"ptr","v":"0x0e9c9690"},"kids_cap":{"t":"ptr","v":"0x0e9c9690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9c98e8"},"kids_end":{"t":"ptr","v":"0x0e9c98ec"},"kids_cap":{"t":"ptr","v":"0x0e9c98ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9c98e8"},"kids_end":{"t":"ptr","v":"0x0e9c98ec"},"kids_cap":{"t":"ptr","v":"0x0e9c98ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9c97a8"},"kids_end":{"t":"ptr","v":"0x0e9c97b0"},"kids_cap":{"t":"ptr","v":"0x0e9c97b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9c97a8"},"kids_end":{"t":"ptr","v":"0x0e9c97b0"},"kids_cap":{"t":"ptr","v":"0x0e9c97b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e9c98b8"},"kids_end":{"t":"ptr","v":"0x0e9c98c0"},"kids_cap":{"t":"ptr","v":"0x0e9c98c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e9c98b8"},"kids_end":{"t":"ptr","v":"0x0e9c98c0"},"kids_cap":{"t":"ptr","v":"0x0e9c98c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9c98a8"},"kids_end":{"t":"ptr","v":"0x0e9c98b0"},"kids_cap":{"t":"ptr","v":"0x0e9c98b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9c98a8"},"kids_end":{"t":"ptr","v":"0x0e9c98b0"},"kids_cap":{"t":"ptr","v":"0x0e9c98b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e9c98d8"},"kids_end":{"t":"ptr","v":"0x0e9c98dc"},"kids_cap":{"t":"ptr","v":"0x0e9c98dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e9c98d8"},"kids_end":{"t":"ptr","v":"0x0e9c98dc"},"kids_cap":{"t":"ptr","v":"0x0e9c98dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e9c9748"},"kids_end":{"t":"ptr","v":"0x0e9c974c"},"kids_cap":{"t":"ptr","v":"0x0e9c974c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e9c9748"},"kids_end":{"t":"ptr","v":"0x0e9c974c"},"kids_cap":{"t":"ptr","v":"0x0e9c974c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9c9788"},"kids_end":{"t":"ptr","v":"0x0e9c9790"},"kids_cap":{"t":"ptr","v":"0x0e9c9790"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9c9788"},"kids_end":{"t":"ptr","v":"0x0e9c9790"},"kids_cap":{"t":"ptr","v":"0x0e9c9790"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e9c9758"},"kids_end":{"t":"ptr","v":"0x0e9c975c"},"kids_cap":{"t":"ptr","v":"0x0e9c975c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e9c9758"},"kids_end":{"t":"ptr","v":"0x0e9c975c"},"kids_cap":{"t":"ptr","v":"0x0e9c975c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fcd60"},"kids_end":{"t":"ptr","v":"0x0e8fcd6c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fcd60"},"kids_end":{"t":"ptr","v":"0x0e8fcd6c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9c98c8"},"kids_end":{"t":"ptr","v":"0x0e9c98cc"},"kids_cap":{"t":"ptr","v":"0x0e9c98cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9c98c8"},"kids_end":{"t":"ptr","v":"0x0e9c98cc"},"kids_cap":{"t":"ptr","v":"0x0e9c98cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d098"},"kids_end":{"t":"ptr","v":"0x0e88d0ac"},"kids_cap":{"t":"ptr","v":"0x0e88d0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d098"},"kids_end":{"t":"ptr","v":"0x0e88d0ac"},"kids_cap":{"t":"ptr","v":"0x0e88d0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e9c98f8"},"kids_end":{"t":"ptr","v":"0x0e9c98fc"},"kids_cap":{"t":"ptr","v":"0x0e9c98fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e9c98f8"},"kids_end":{"t":"ptr","v":"0x0e9c98fc"},"kids_cap":{"t":"ptr","v":"0x0e9c98fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e9c9878"},"kids_end":{"t":"ptr","v":"0x0e9c987c"},"kids_cap":{"t":"ptr","v":"0x0e9c987c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e9c9878"},"kids_end":{"t":"ptr","v":"0x0e9c987c"},"kids_cap":{"t":"ptr","v":"0x0e9c987c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e9c9838"},"kids_end":{"t":"ptr","v":"0x0e9c983c"},"kids_cap":{"t":"ptr","v":"0x0e9c983c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e9c9838"},"kids_end":{"t":"ptr","v":"0x0e9c983c"},"kids_cap":{"t":"ptr","v":"0x0e9c983c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9c9908"},"kids_end":{"t":"ptr","v":"0x0e9c990c"},"kids_cap":{"t":"ptr","v":"0x0e9c990c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9c9908"},"kids_end":{"t":"ptr","v":"0x0e9c990c"},"kids_cap":{"t":"ptr","v":"0x0e9c990c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9c9818"},"kids_end":{"t":"ptr","v":"0x0e9c981c"},"kids_cap":{"t":"ptr","v":"0x0e9c981c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9c9818"},"kids_end":{"t":"ptr","v":"0x0e9c981c"},"kids_cap":{"t":"ptr","v":"0x0e9c981c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fcd30"},"kids_end":{"t":"ptr","v":"0x0e8fcd40"},"kids_cap":{"t":"ptr","v":"0x0e8fcd40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fcd30"},"kids_end":{"t":"ptr","v":"0x0e8fcd40"},"kids_cap":{"t":"ptr","v":"0x0e8fcd40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fcbc8"},"kids_end":{"t":"ptr","v":"0x0e8fcbd4"},"kids_cap":{"t":"ptr","v":"0x0e8fcbd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fcbc8"},"kids_end":{"t":"ptr","v":"0x0e8fcbd4"},"kids_cap":{"t":"ptr","v":"0x0e8fcbd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[217]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e840"},"tech_id":{"t":"i32","v":217},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e840"},"tech_id":{"t":"i32","v":217},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9c9928"},"kids_end":{"t":"ptr","v":"0x0e9c992c"},"kids_cap":{"t":"ptr","v":"0x0e9c992c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9c9928"},"kids_end":{"t":"ptr","v":"0x0e9c992c"},"kids_cap":{"t":"ptr","v":"0x0e9c992c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9c97c8"},"kids_end":{"t":"ptr","v":"0x0e9c97cc"},"kids_cap":{"t":"ptr","v":"0x0e9c97cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9c97c8"},"kids_end":{"t":"ptr","v":"0x0e9c97cc"},"kids_cap":{"t":"ptr","v":"0x0e9c97cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fcc58"},"kids_end":{"t":"ptr","v":"0x0e8fcc68"},"kids_cap":{"t":"ptr","v":"0x0e8fcc68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fcc58"},"kids_end":{"t":"ptr","v":"0x0e8fcc68"},"kids_cap":{"t":"ptr","v":"0x0e8fcc68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9c9798"},"kids_end":{"t":"ptr","v":"0x0e9c97a0"},"kids_cap":{"t":"ptr","v":"0x0e9c97a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9c9798"},"kids_end":{"t":"ptr","v":"0x0e9c97a0"},"kids_cap":{"t":"ptr","v":"0x0e9c97a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9c9938"},"kids_end":{"t":"ptr","v":"0x0e9c993c"},"kids_cap":{"t":"ptr","v":"0x0e9c993c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9c9938"},"kids_end":{"t":"ptr","v":"0x0e9c993c"},"kids_cap":{"t":"ptr","v":"0x0e9c993c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e9c9778"},"kids_end":{"t":"ptr","v":"0x0e9c977c"},"kids_cap":{"t":"ptr","v":"0x0e9c977c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e9c9778"},"kids_end":{"t":"ptr","v":"0x0e9c977c"},"kids_cap":{"t":"ptr","v":"0x0e9c977c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fcd48"},"kids_end":{"t":"ptr","v":"0x0e8fcd54"},"kids_cap":{"t":"ptr","v":"0x0e8fcd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fcd48"},"kids_end":{"t":"ptr","v":"0x0e8fcd54"},"kids_cap":{"t":"ptr","v":"0x0e8fcd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9c9768"},"kids_end":{"t":"ptr","v":"0x0e9c9770"},"kids_cap":{"t":"ptr","v":"0x0e9c9770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9c9768"},"kids_end":{"t":"ptr","v":"0x0e9c9770"},"kids_cap":{"t":"ptr","v":"0x0e9c9770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d398"},"kids_end":{"t":"ptr","v":"0x0e88d3ac"},"kids_cap":{"t":"ptr","v":"0x0e88d3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d398"},"kids_end":{"t":"ptr","v":"0x0e88d3ac"},"kids_cap":{"t":"ptr","v":"0x0e88d3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e9c9888"},"kids_end":{"t":"ptr","v":"0x0e9c988c"},"kids_cap":{"t":"ptr","v":"0x0e9c988c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e9c9888"},"kids_end":{"t":"ptr","v":"0x0e9c988c"},"kids_cap":{"t":"ptr","v":"0x0e9c988c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e9c97b8"},"kids_end":{"t":"ptr","v":"0x0e9c97bc"},"kids_cap":{"t":"ptr","v":"0x0e9c97bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e9c97b8"},"kids_end":{"t":"ptr","v":"0x0e9c97bc"},"kids_cap":{"t":"ptr","v":"0x0e9c97bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9c9898"},"kids_end":{"t":"ptr","v":"0x0e9c989c"},"kids_cap":{"t":"ptr","v":"0x0e9c989c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9c9898"},"kids_end":{"t":"ptr","v":"0x0e9c989c"},"kids_cap":{"t":"ptr","v":"0x0e9c989c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e9c97d8"},"kids_end":{"t":"ptr","v":"0x0e9c97dc"},"kids_cap":{"t":"ptr","v":"0x0e9c97dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e9c97d8"},"kids_end":{"t":"ptr","v":"0x0e9c97dc"},"kids_cap":{"t":"ptr","v":"0x0e9c97dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9c97e8"},"kids_end":{"t":"ptr","v":"0x0e9c97ec"},"kids_cap":{"t":"ptr","v":"0x0e9c97ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9c97e8"},"kids_end":{"t":"ptr","v":"0x0e9c97ec"},"kids_cap":{"t":"ptr","v":"0x0e9c97ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9c97f8"},"kids_end":{"t":"ptr","v":"0x0e9c9800"},"kids_cap":{"t":"ptr","v":"0x0e9c9800"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9c97f8"},"kids_end":{"t":"ptr","v":"0x0e9c9800"},"kids_cap":{"t":"ptr","v":"0x0e9c9800"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d078"},"kids_end":{"t":"ptr","v":"0x0e88d08c"},"kids_cap":{"t":"ptr","v":"0x0e88d08c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d078"},"kids_end":{"t":"ptr","v":"0x0e88d08c"},"kids_cap":{"t":"ptr","v":"0x0e88d08c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e9c9918"},"kids_end":{"t":"ptr","v":"0x0e9c991c"},"kids_cap":{"t":"ptr","v":"0x0e9c991c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e9c9918"},"kids_end":{"t":"ptr","v":"0x0e9c991c"},"kids_cap":{"t":"ptr","v":"0x0e9c991c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9c9848"},"kids_end":{"t":"ptr","v":"0x0e9c984c"},"kids_cap":{"t":"ptr","v":"0x0e9c984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9c9848"},"kids_end":{"t":"ptr","v":"0x0e9c984c"},"kids_cap":{"t":"ptr","v":"0x0e9c984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e9c9868"},"kids_end":{"t":"ptr","v":"0x0e9c986c"},"kids_cap":{"t":"ptr","v":"0x0e9c986c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e9c9868"},"kids_end":{"t":"ptr","v":"0x0e9c986c"},"kids_cap":{"t":"ptr","v":"0x0e9c986c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9c9808"},"kids_end":{"t":"ptr","v":"0x0e9c9810"},"kids_cap":{"t":"ptr","v":"0x0e9c9810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9c9808"},"kids_end":{"t":"ptr","v":"0x0e9c9810"},"kids_cap":{"t":"ptr","v":"0x0e9c9810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9c9858"},"kids_end":{"t":"ptr","v":"0x0e9c9860"},"kids_cap":{"t":"ptr","v":"0x0e9c9860"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9c9858"},"kids_end":{"t":"ptr","v":"0x0e9c9860"},"kids_cap":{"t":"ptr","v":"0x0e9c9860"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e9c9828"},"kids_end":{"t":"ptr","v":"0x0e9c9830"},"kids_cap":{"t":"ptr","v":"0x0e9c9830"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e9c9828"},"kids_end":{"t":"ptr","v":"0x0e9c9830"},"kids_cap":{"t":"ptr","v":"0x0e9c9830"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9c9e78"},"kids_end":{"t":"ptr","v":"0x0e9c9e7c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9c9e78"},"kids_end":{"t":"ptr","v":"0x0e9c9e7c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[253]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697168"},"tech_id":{"t":"i32","v":253},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697168"},"tech_id":{"t":"i32","v":253},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9c9e88"},"kids_end":{"t":"ptr","v":"0x0e9c9e8c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9c9e88"},"kids_end":{"t":"ptr","v":"0x0e9c9e8c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fcc10"},"kids_end":{"t":"ptr","v":"0x0e8fcc1c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fcc10"},"kids_end":{"t":"ptr","v":"0x0e8fcc1c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fca90"},"kids_end":{"t":"ptr","v":"0x0e8fca9c"},"kids_cap":{"t":"ptr","v":"0x0e8fca9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fca90"},"kids_end":{"t":"ptr","v":"0x0e8fca9c"},"kids_cap":{"t":"ptr","v":"0x0e8fca9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fcc70"},"kids_end":{"t":"ptr","v":"0x0e8fcc7c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fcc70"},"kids_end":{"t":"ptr","v":"0x0e8fcc7c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fcaa8"},"kids_end":{"t":"ptr","v":"0x0e8fcab4"},"kids_cap":{"t":"ptr","v":"0x0e8fcab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fcaa8"},"kids_end":{"t":"ptr","v":"0x0e8fcab4"},"kids_cap":{"t":"ptr","v":"0x0e8fcab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fcc88"},"kids_end":{"t":"ptr","v":"0x0e8fcc94"},"kids_cap":{"t":"ptr","v":"0x0e8fcc94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fcc88"},"kids_end":{"t":"ptr","v":"0x0e8fcc94"},"kids_cap":{"t":"ptr","v":"0x0e8fcc94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[269]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699c10"},"tech_id":{"t":"i32","v":269},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699c10"},"tech_id":{"t":"i32","v":269},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d178"},"kids_end":{"t":"ptr","v":"0x0e88d190"},"kids_cap":{"t":"ptr","v":"0x0e88d190"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d178"},"kids_end":{"t":"ptr","v":"0x0e88d190"},"kids_cap":{"t":"ptr","v":"0x0e88d190"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":80000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":80000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9ca0c8"},"kids_end":{"t":"ptr","v":"0x0e9ca0d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca0d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9ca0c8"},"kids_end":{"t":"ptr","v":"0x0e9ca0d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca0d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9ca088"},"kids_end":{"t":"ptr","v":"0x0e9ca090"},"kids_cap":{"t":"ptr","v":"0x0e9ca090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9ca088"},"kids_end":{"t":"ptr","v":"0x0e9ca090"},"kids_cap":{"t":"ptr","v":"0x0e9ca090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9c9f78"},"kids_end":{"t":"ptr","v":"0x0e9c9f80"},"kids_cap":{"t":"ptr","v":"0x0e9c9f80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9c9f78"},"kids_end":{"t":"ptr","v":"0x0e9c9f80"},"kids_cap":{"t":"ptr","v":"0x0e9c9f80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e9c9f98"},"kids_end":{"t":"ptr","v":"0x0e9c9fa0"},"kids_cap":{"t":"ptr","v":"0x0e9c9fa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e9c9f98"},"kids_end":{"t":"ptr","v":"0x0e9c9fa0"},"kids_cap":{"t":"ptr","v":"0x0e9c9fa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9c9fa8"},"kids_end":{"t":"ptr","v":"0x0e9c9fac"},"kids_cap":{"t":"ptr","v":"0x0e9c9fac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9c9fa8"},"kids_end":{"t":"ptr","v":"0x0e9c9fac"},"kids_cap":{"t":"ptr","v":"0x0e9c9fac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9ca098"},"kids_end":{"t":"ptr","v":"0x0e9ca09c"},"kids_cap":{"t":"ptr","v":"0x0e9ca09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9ca098"},"kids_end":{"t":"ptr","v":"0x0e9ca09c"},"kids_cap":{"t":"ptr","v":"0x0e9ca09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca0e8"},"kids_end":{"t":"ptr","v":"0x0e9ca0ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca0e8"},"kids_end":{"t":"ptr","v":"0x0e9ca0ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9c9fe8"},"kids_end":{"t":"ptr","v":"0x0e9c9fec"},"kids_cap":{"t":"ptr","v":"0x0e9c9fec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9c9fe8"},"kids_end":{"t":"ptr","v":"0x0e9c9fec"},"kids_cap":{"t":"ptr","v":"0x0e9c9fec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca128"},"kids_end":{"t":"ptr","v":"0x0e9ca12c"},"kids_cap":{"t":"ptr","v":"0x0e9ca12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca128"},"kids_end":{"t":"ptr","v":"0x0e9ca12c"},"kids_cap":{"t":"ptr","v":"0x0e9ca12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca008"},"kids_end":{"t":"ptr","v":"0x0e9ca00c"},"kids_cap":{"t":"ptr","v":"0x0e9ca00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca008"},"kids_end":{"t":"ptr","v":"0x0e9ca00c"},"kids_cap":{"t":"ptr","v":"0x0e9ca00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca0f8"},"kids_end":{"t":"ptr","v":"0x0e9ca0fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca0f8"},"kids_end":{"t":"ptr","v":"0x0e9ca0fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9ca0d8"},"kids_end":{"t":"ptr","v":"0x0e9ca0dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9ca0d8"},"kids_end":{"t":"ptr","v":"0x0e9ca0dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9ca058"},"kids_end":{"t":"ptr","v":"0x0e9ca05c"},"kids_cap":{"t":"ptr","v":"0x0e9ca05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9ca058"},"kids_end":{"t":"ptr","v":"0x0e9ca05c"},"kids_cap":{"t":"ptr","v":"0x0e9ca05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9c9fc8"},"kids_end":{"t":"ptr","v":"0x0e9c9fcc"},"kids_cap":{"t":"ptr","v":"0x0e9c9fcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9c9fc8"},"kids_end":{"t":"ptr","v":"0x0e9c9fcc"},"kids_cap":{"t":"ptr","v":"0x0e9c9fcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9ca018"},"kids_end":{"t":"ptr","v":"0x0e9ca01c"},"kids_cap":{"t":"ptr","v":"0x0e9ca01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9ca018"},"kids_end":{"t":"ptr","v":"0x0e9ca01c"},"kids_cap":{"t":"ptr","v":"0x0e9ca01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"before":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}},"ours":{"ret":null,"side":{"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":393},"next_index":{"t":"i64","v":231}}}},"overbudget":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9cb2e8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cb1a8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cb158"},"kids_end":{"t":"ptr","v":"0x0e9cb15c"},"kids_cap":{"t":"ptr","v":"0x0e9cb15c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9cb168"},"kids_end":{"t":"ptr","v":"0x0e9cb170"},"kids_cap":{"t":"ptr","v":"0x0e9cb170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9cb178"},"kids_end":{"t":"ptr","v":"0x0e9cb180"},"kids_cap":{"t":"ptr","v":"0x0e9cb180"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cb188"},"kids_end":{"t":"ptr","v":"0x0e9cb18c"},"kids_cap":{"t":"ptr","v":"0x0e9cb18c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9cb1b8"},"kids_end":{"t":"ptr","v":"0x0e9cb1bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9cb288"},"kids_end":{"t":"ptr","v":"0x0e9cb28c"},"kids_cap":{"t":"ptr","v":"0x0e9cb28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe8f0"},"kids_end":{"t":"ptr","v":"0x0e8fe8fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cb2d8"},"kids_end":{"t":"ptr","v":"0x0e9cb2e0"},"kids_cap":{"t":"ptr","v":"0x0e9cb2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe950"},"kids_end":{"t":"ptr","v":"0x0e8fe960"},"kids_cap":{"t":"ptr","v":"0x0e8fe960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cb1c8"},"kids_end":{"t":"ptr","v":"0x0e9cb1cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cb1d8"},"kids_end":{"t":"ptr","v":"0x0e9cb1dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fe908"},"kids_end":{"t":"ptr","v":"0x0e8fe914"},"kids_cap":{"t":"ptr","v":"0x0e8fe914"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9cb238"},"kids_end":{"t":"ptr","v":"0x0e9cb23c"},"kids_cap":{"t":"ptr","v":"0x0e9cb23c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cb1e8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9cb2f8"},"kids_end":{"t":"ptr","v":"0x0e9cb2fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb2fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe968"},"kids_end":{"t":"ptr","v":"0x0e8fe974"},"kids_cap":{"t":"ptr","v":"0x0e8fe974"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fcce8"},"kids_end":{"t":"ptr","v":"0x0e8fccf8"},"kids_cap":{"t":"ptr","v":"0x0e8fccf8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cb318"},"kids_end":{"t":"ptr","v":"0x0e9cb31c"},"kids_cap":{"t":"ptr","v":"0x0e9cb31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cb248"},"kids_end":{"t":"ptr","v":"0x0e9cb24c"},"kids_cap":{"t":"ptr","v":"0x0e9cb24c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb1f8"},"kids_end":{"t":"ptr","v":"0x0e9cb1fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb308"},"kids_end":{"t":"ptr","v":"0x0e9cb30c"},"kids_cap":{"t":"ptr","v":"0x0e9cb30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9cb268"},"kids_end":{"t":"ptr","v":"0x0e9cb270"},"kids_cap":{"t":"ptr","v":"0x0e9cb270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fcd18"},"kids_end":{"t":"ptr","v":"0x0e8fcd24"},"kids_cap":{"t":"ptr","v":"0x0e8fcd24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb208"},"kids_end":{"t":"ptr","v":"0x0e9cb210"},"kids_cap":{"t":"ptr","v":"0x0e9cb210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fcb50"},"kids_end":{"t":"ptr","v":"0x0e8fcb5c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fcad8"},"kids_end":{"t":"ptr","v":"0x0e8fcae4"},"kids_cap":{"t":"ptr","v":"0x0e8fcae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e9cb218"},"kids_end":{"t":"ptr","v":"0x0e9cb220"},"kids_cap":{"t":"ptr","v":"0x0e9cb220"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9cb328"},"kids_end":{"t":"ptr","v":"0x0e9cb32c"},"kids_cap":{"t":"ptr","v":"0x0e9cb32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cb278"},"kids_end":{"t":"ptr","v":"0x0e9cb27c"},"kids_cap":{"t":"ptr","v":"0x0e9cb27c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fcc40"},"kids_end":{"t":"ptr","v":"0x0e8fcc4c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9cb298"},"kids_end":{"t":"ptr","v":"0x0e9cb29c"},"kids_cap":{"t":"ptr","v":"0x0e9cb29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb2a8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9cb3b8"},"kids_end":{"t":"ptr","v":"0x0e9cb3bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cb358"},"kids_end":{"t":"ptr","v":"0x0e9cb35c"},"kids_cap":{"t":"ptr","v":"0x0e9cb35c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fcb68"},"kids_end":{"t":"ptr","v":"0x0e8fcb74"},"kids_cap":{"t":"ptr","v":"0x0e8fcb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9cb448"},"kids_end":{"t":"ptr","v":"0x0e9cb44c"},"kids_cap":{"t":"ptr","v":"0x0e9cb44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb408"},"kids_end":{"t":"ptr","v":"0x0e9cb40c"},"kids_cap":{"t":"ptr","v":"0x0e9cb40c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb3e8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb4a8"},"kids_end":{"t":"ptr","v":"0x0e9cb4ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb4d8"},"kids_end":{"t":"ptr","v":"0x0e9cb4dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb498"},"kids_end":{"t":"ptr","v":"0x0e9cb49c"},"kids_cap":{"t":"ptr","v":"0x0e9cb49c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9cb3f8"},"kids_end":{"t":"ptr","v":"0x0e9cb3fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fcaf0"},"kids_end":{"t":"ptr","v":"0x0e8fcafc"},"kids_cap":{"t":"ptr","v":"0x0e8fcafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fcb08"},"kids_end":{"t":"ptr","v":"0x0e8fcb14"},"kids_cap":{"t":"ptr","v":"0x0e8fcb14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb3a8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb488"},"kids_end":{"t":"ptr","v":"0x0e9cb490"},"kids_cap":{"t":"ptr","v":"0x0e9cb490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cb4c8"},"kids_end":{"t":"ptr","v":"0x0e9cb4cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88ce18"},"kids_end":{"t":"ptr","v":"0x0e88ce2c"},"kids_cap":{"t":"ptr","v":"0x0e88ce2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fcb80"},"kids_end":{"t":"ptr","v":"0x0e8fcb8c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969de0"},"kids_end":{"t":"ptr","v":"0x0e969e04"},"kids_cap":{"t":"ptr","v":"0x0e969e04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fcc28"},"kids_end":{"t":"ptr","v":"0x0e8fcc34"},"kids_cap":{"t":"ptr","v":"0x0e8fcc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[86]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921a90"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e9cb348"},"kids_end":{"t":"ptr","v":"0x0e9cb34c"},"kids_cap":{"t":"ptr","v":"0x0e9cb34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[87]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04922318"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e9cb388"},"kids_end":{"t":"ptr","v":"0x0e9cb390"},"kids_cap":{"t":"ptr","v":"0x0e9cb390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[88]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920ab8"},"tech_id":{"t":"i32","v":88},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb4b8"},"kids_end":{"t":"ptr","v":"0x0e9cb4bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9cb458"},"kids_end":{"t":"ptr","v":"0x0e9cb45c"},"kids_cap":{"t":"ptr","v":"0x0e9cb45c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb468"},"kids_end":{"t":"ptr","v":"0x0e9cb46c"},"kids_cap":{"t":"ptr","v":"0x0e9cb46c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb478"},"kids_end":{"t":"ptr","v":"0x0e9cb47c"},"kids_cap":{"t":"ptr","v":"0x0e9cb47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb3d8"},"kids_end":{"t":"ptr","v":"0x0e9cb3dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb438"},"kids_end":{"t":"ptr","v":"0x0e9cb440"},"kids_cap":{"t":"ptr","v":"0x0e9cb440"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb368"},"kids_end":{"t":"ptr","v":"0x0e9cb370"},"kids_cap":{"t":"ptr","v":"0x0e9cb370"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d378"},"kids_end":{"t":"ptr","v":"0x0e88d38c"},"kids_cap":{"t":"ptr","v":"0x0e88d38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fcb20"},"kids_end":{"t":"ptr","v":"0x0e8fcb2c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb378"},"kids_end":{"t":"ptr","v":"0x0e9cb37c"},"kids_cap":{"t":"ptr","v":"0x0e9cb37c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb398"},"kids_end":{"t":"ptr","v":"0x0e9cb39c"},"kids_cap":{"t":"ptr","v":"0x0e9cb39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9cb3c8"},"kids_end":{"t":"ptr","v":"0x0e9cb3cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9cb418"},"kids_end":{"t":"ptr","v":"0x0e9cb41c"},"kids_cap":{"t":"ptr","v":"0x0e9cb41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e9cb428"},"kids_end":{"t":"ptr","v":"0x0e9cb430"},"kids_cap":{"t":"ptr","v":"0x0e9cb430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fccd0"},"kids_end":{"t":"ptr","v":"0x0e8fccdc"},"kids_cap":{"t":"ptr","v":"0x0e8fccdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e9c95d8"},"kids_end":{"t":"ptr","v":"0x0e9c95e0"},"kids_cap":{"t":"ptr","v":"0x0e9c95e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9c9638"},"kids_end":{"t":"ptr","v":"0x0e9c9640"},"kids_cap":{"t":"ptr","v":"0x0e9c9640"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e9c9718"},"kids_end":{"t":"ptr","v":"0x0e9c971c"},"kids_cap":{"t":"ptr","v":"0x0e9c971c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fcbf8"},"kids_end":{"t":"ptr","v":"0x0e8fcc04"},"kids_cap":{"t":"ptr","v":"0x0e8fcc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fcb38"},"kids_end":{"t":"ptr","v":"0x0e8fcb44"},"kids_cap":{"t":"ptr","v":"0x0e8fcb44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fcb98"},"kids_end":{"t":"ptr","v":"0x0e8fcba8"},"kids_cap":{"t":"ptr","v":"0x0e8fcba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9c96a8"},"kids_end":{"t":"ptr","v":"0x0e9c96b0"},"kids_cap":{"t":"ptr","v":"0x0e9c96b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9c9588"},"kids_end":{"t":"ptr","v":"0x0e9c958c"},"kids_cap":{"t":"ptr","v":"0x0e9c958c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fcbe0"},"kids_end":{"t":"ptr","v":"0x0e8fcbec"},"kids_cap":{"t":"ptr","v":"0x0e8fcbec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9c96f8"},"kids_end":{"t":"ptr","v":"0x0e9c96fc"},"kids_cap":{"t":"ptr","v":"0x0e9c96fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9c9598"},"kids_end":{"t":"ptr","v":"0x0e9c959c"},"kids_cap":{"t":"ptr","v":"0x0e9c959c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e9c95e8"},"kids_end":{"t":"ptr","v":"0x0e9c95ec"},"kids_cap":{"t":"ptr","v":"0x0e9c95ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e9c96d8"},"kids_end":{"t":"ptr","v":"0x0e9c96e0"},"kids_cap":{"t":"ptr","v":"0x0e9c96e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9c9618"},"kids_end":{"t":"ptr","v":"0x0e9c961c"},"kids_cap":{"t":"ptr","v":"0x0e9c961c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9c9548"},"kids_end":{"t":"ptr","v":"0x0e9c9550"},"kids_cap":{"t":"ptr","v":"0x0e9c9550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fcd00"},"kids_end":{"t":"ptr","v":"0x0e8fcd0c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e9c95a8"},"kids_end":{"t":"ptr","v":"0x0e9c95ac"},"kids_cap":{"t":"ptr","v":"0x0e9c95ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9c9708"},"kids_end":{"t":"ptr","v":"0x0e9c9710"},"kids_cap":{"t":"ptr","v":"0x0e9c9710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e9c9558"},"kids_end":{"t":"ptr","v":"0x0e9c955c"},"kids_cap":{"t":"ptr","v":"0x0e9c955c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e9c9698"},"kids_end":{"t":"ptr","v":"0x0e9c96a0"},"kids_cap":{"t":"ptr","v":"0x0e9c96a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9c9648"},"kids_end":{"t":"ptr","v":"0x0e9c9650"},"kids_cap":{"t":"ptr","v":"0x0e9c9650"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e9c9738"},"kids_end":{"t":"ptr","v":"0x0e9c9740"},"kids_cap":{"t":"ptr","v":"0x0e9c9740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e9c9728"},"kids_end":{"t":"ptr","v":"0x0e9c9730"},"kids_cap":{"t":"ptr","v":"0x0e9c9730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e9c96b8"},"kids_end":{"t":"ptr","v":"0x0e9c96bc"},"kids_cap":{"t":"ptr","v":"0x0e9c96bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9c9568"},"kids_end":{"t":"ptr","v":"0x0e9c956c"},"kids_cap":{"t":"ptr","v":"0x0e9c956c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9c9578"},"kids_end":{"t":"ptr","v":"0x0e9c9580"},"kids_cap":{"t":"ptr","v":"0x0e9c9580"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9c95c8"},"kids_end":{"t":"ptr","v":"0x0e9c95d0"},"kids_cap":{"t":"ptr","v":"0x0e9c95d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9c95b8"},"kids_end":{"t":"ptr","v":"0x0e9c95bc"},"kids_cap":{"t":"ptr","v":"0x0e9c95bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e9c95f8"},"kids_end":{"t":"ptr","v":"0x0e9c95fc"},"kids_cap":{"t":"ptr","v":"0x0e9c95fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9c9608"},"kids_end":{"t":"ptr","v":"0x0e9c9610"},"kids_cap":{"t":"ptr","v":"0x0e9c9610"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9c9628"},"kids_end":{"t":"ptr","v":"0x0e9c962c"},"kids_cap":{"t":"ptr","v":"0x0e9c962c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e9c9658"},"kids_end":{"t":"ptr","v":"0x0e9c965c"},"kids_cap":{"t":"ptr","v":"0x0e9c965c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9c9668"},"kids_end":{"t":"ptr","v":"0x0e9c9670"},"kids_cap":{"t":"ptr","v":"0x0e9c9670"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9c9678"},"kids_end":{"t":"ptr","v":"0x0e9c967c"},"kids_cap":{"t":"ptr","v":"0x0e9c967c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e9c96c8"},"kids_end":{"t":"ptr","v":"0x0e9c96cc"},"kids_cap":{"t":"ptr","v":"0x0e9c96cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fcbb0"},"kids_end":{"t":"ptr","v":"0x0e8fcbbc"},"kids_cap":{"t":"ptr","v":"0x0e8fcbbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fcd78"},"kids_end":{"t":"ptr","v":"0x0e8fcd88"},"kids_cap":{"t":"ptr","v":"0x0e8fcd88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9c96e8"},"kids_end":{"t":"ptr","v":"0x0e9c96f0"},"kids_cap":{"t":"ptr","v":"0x0e9c96f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e9c9688"},"kids_end":{"t":"ptr","v":"0x0e9c9690"},"kids_cap":{"t":"ptr","v":"0x0e9c9690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9c98e8"},"kids_end":{"t":"ptr","v":"0x0e9c98ec"},"kids_cap":{"t":"ptr","v":"0x0e9c98ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9c97a8"},"kids_end":{"t":"ptr","v":"0x0e9c97b0"},"kids_cap":{"t":"ptr","v":"0x0e9c97b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e9c98b8"},"kids_end":{"t":"ptr","v":"0x0e9c98c0"},"kids_cap":{"t":"ptr","v":"0x0e9c98c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9c98a8"},"kids_end":{"t":"ptr","v":"0x0e9c98b0"},"kids_cap":{"t":"ptr","v":"0x0e9c98b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e9c98d8"},"kids_end":{"t":"ptr","v":"0x0e9c98dc"},"kids_cap":{"t":"ptr","v":"0x0e9c98dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e9c9748"},"kids_end":{"t":"ptr","v":"0x0e9c974c"},"kids_cap":{"t":"ptr","v":"0x0e9c974c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9c9788"},"kids_end":{"t":"ptr","v":"0x0e9c9790"},"kids_cap":{"t":"ptr","v":"0x0e9c9790"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e9c9758"},"kids_end":{"t":"ptr","v":"0x0e9c975c"},"kids_cap":{"t":"ptr","v":"0x0e9c975c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fcd60"},"kids_end":{"t":"ptr","v":"0x0e8fcd6c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9c98c8"},"kids_end":{"t":"ptr","v":"0x0e9c98cc"},"kids_cap":{"t":"ptr","v":"0x0e9c98cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d098"},"kids_end":{"t":"ptr","v":"0x0e88d0ac"},"kids_cap":{"t":"ptr","v":"0x0e88d0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e9c98f8"},"kids_end":{"t":"ptr","v":"0x0e9c98fc"},"kids_cap":{"t":"ptr","v":"0x0e9c98fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e9c9878"},"kids_end":{"t":"ptr","v":"0x0e9c987c"},"kids_cap":{"t":"ptr","v":"0x0e9c987c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e9c9838"},"kids_end":{"t":"ptr","v":"0x0e9c983c"},"kids_cap":{"t":"ptr","v":"0x0e9c983c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9c9908"},"kids_end":{"t":"ptr","v":"0x0e9c990c"},"kids_cap":{"t":"ptr","v":"0x0e9c990c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9c9818"},"kids_end":{"t":"ptr","v":"0x0e9c981c"},"kids_cap":{"t":"ptr","v":"0x0e9c981c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fcd30"},"kids_end":{"t":"ptr","v":"0x0e8fcd40"},"kids_cap":{"t":"ptr","v":"0x0e8fcd40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fcbc8"},"kids_end":{"t":"ptr","v":"0x0e8fcbd4"},"kids_cap":{"t":"ptr","v":"0x0e8fcbd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[217]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e840"},"tech_id":{"t":"i32","v":217},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9c9928"},"kids_end":{"t":"ptr","v":"0x0e9c992c"},"kids_cap":{"t":"ptr","v":"0x0e9c992c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9c97c8"},"kids_end":{"t":"ptr","v":"0x0e9c97cc"},"kids_cap":{"t":"ptr","v":"0x0e9c97cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fcc58"},"kids_end":{"t":"ptr","v":"0x0e8fcc68"},"kids_cap":{"t":"ptr","v":"0x0e8fcc68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9c9798"},"kids_end":{"t":"ptr","v":"0x0e9c97a0"},"kids_cap":{"t":"ptr","v":"0x0e9c97a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9c9938"},"kids_end":{"t":"ptr","v":"0x0e9c993c"},"kids_cap":{"t":"ptr","v":"0x0e9c993c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e9c9778"},"kids_end":{"t":"ptr","v":"0x0e9c977c"},"kids_cap":{"t":"ptr","v":"0x0e9c977c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fcd48"},"kids_end":{"t":"ptr","v":"0x0e8fcd54"},"kids_cap":{"t":"ptr","v":"0x0e8fcd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9c9768"},"kids_end":{"t":"ptr","v":"0x0e9c9770"},"kids_cap":{"t":"ptr","v":"0x0e9c9770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d398"},"kids_end":{"t":"ptr","v":"0x0e88d3ac"},"kids_cap":{"t":"ptr","v":"0x0e88d3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e9c9888"},"kids_end":{"t":"ptr","v":"0x0e9c988c"},"kids_cap":{"t":"ptr","v":"0x0e9c988c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e9c97b8"},"kids_end":{"t":"ptr","v":"0x0e9c97bc"},"kids_cap":{"t":"ptr","v":"0x0e9c97bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9c9898"},"kids_end":{"t":"ptr","v":"0x0e9c989c"},"kids_cap":{"t":"ptr","v":"0x0e9c989c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e9c97d8"},"kids_end":{"t":"ptr","v":"0x0e9c97dc"},"kids_cap":{"t":"ptr","v":"0x0e9c97dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9c97e8"},"kids_end":{"t":"ptr","v":"0x0e9c97ec"},"kids_cap":{"t":"ptr","v":"0x0e9c97ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9c97f8"},"kids_end":{"t":"ptr","v":"0x0e9c9800"},"kids_cap":{"t":"ptr","v":"0x0e9c9800"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d078"},"kids_end":{"t":"ptr","v":"0x0e88d08c"},"kids_cap":{"t":"ptr","v":"0x0e88d08c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e9c9918"},"kids_end":{"t":"ptr","v":"0x0e9c991c"},"kids_cap":{"t":"ptr","v":"0x0e9c991c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9c9848"},"kids_end":{"t":"ptr","v":"0x0e9c984c"},"kids_cap":{"t":"ptr","v":"0x0e9c984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e9c9868"},"kids_end":{"t":"ptr","v":"0x0e9c986c"},"kids_cap":{"t":"ptr","v":"0x0e9c986c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9c9808"},"kids_end":{"t":"ptr","v":"0x0e9c9810"},"kids_cap":{"t":"ptr","v":"0x0e9c9810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9c9858"},"kids_end":{"t":"ptr","v":"0x0e9c9860"},"kids_cap":{"t":"ptr","v":"0x0e9c9860"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e9c9828"},"kids_end":{"t":"ptr","v":"0x0e9c9830"},"kids_cap":{"t":"ptr","v":"0x0e9c9830"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9c9e78"},"kids_end":{"t":"ptr","v":"0x0e9c9e7c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[253]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697168"},"tech_id":{"t":"i32","v":253},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9c9e88"},"kids_end":{"t":"ptr","v":"0x0e9c9e8c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fcc10"},"kids_end":{"t":"ptr","v":"0x0e8fcc1c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fca90"},"kids_end":{"t":"ptr","v":"0x0e8fca9c"},"kids_cap":{"t":"ptr","v":"0x0e8fca9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fcc70"},"kids_end":{"t":"ptr","v":"0x0e8fcc7c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fcaa8"},"kids_end":{"t":"ptr","v":"0x0e8fcab4"},"kids_cap":{"t":"ptr","v":"0x0e8fcab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fcc88"},"kids_end":{"t":"ptr","v":"0x0e8fcc94"},"kids_cap":{"t":"ptr","v":"0x0e8fcc94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[269]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699c10"},"tech_id":{"t":"i32","v":269},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d178"},"kids_end":{"t":"ptr","v":"0x0e88d190"},"kids_cap":{"t":"ptr","v":"0x0e88d190"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":80000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9ca0c8"},"kids_end":{"t":"ptr","v":"0x0e9ca0d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca0d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9ca088"},"kids_end":{"t":"ptr","v":"0x0e9ca090"},"kids_cap":{"t":"ptr","v":"0x0e9ca090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9c9f78"},"kids_end":{"t":"ptr","v":"0x0e9c9f80"},"kids_cap":{"t":"ptr","v":"0x0e9c9f80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e9c9f98"},"kids_end":{"t":"ptr","v":"0x0e9c9fa0"},"kids_cap":{"t":"ptr","v":"0x0e9c9fa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9c9fa8"},"kids_end":{"t":"ptr","v":"0x0e9c9fac"},"kids_cap":{"t":"ptr","v":"0x0e9c9fac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9ca098"},"kids_end":{"t":"ptr","v":"0x0e9ca09c"},"kids_cap":{"t":"ptr","v":"0x0e9ca09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca0e8"},"kids_end":{"t":"ptr","v":"0x0e9ca0ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9c9fe8"},"kids_end":{"t":"ptr","v":"0x0e9c9fec"},"kids_cap":{"t":"ptr","v":"0x0e9c9fec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca128"},"kids_end":{"t":"ptr","v":"0x0e9ca12c"},"kids_cap":{"t":"ptr","v":"0x0e9ca12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca008"},"kids_end":{"t":"ptr","v":"0x0e9ca00c"},"kids_cap":{"t":"ptr","v":"0x0e9ca00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca0f8"},"kids_end":{"t":"ptr","v":"0x0e9ca0fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9ca0d8"},"kids_end":{"t":"ptr","v":"0x0e9ca0dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9ca058"},"kids_end":{"t":"ptr","v":"0x0e9ca05c"},"kids_cap":{"t":"ptr","v":"0x0e9ca05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9c9fc8"},"kids_end":{"t":"ptr","v":"0x0e9c9fcc"},"kids_cap":{"t":"ptr","v":"0x0e9c9fcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9ca018"},"kids_end":{"t":"ptr","v":"0x0e9ca01c"},"kids_cap":{"t":"ptr","v":"0x0e9ca01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["player","tree_header"],"undeclared":[],"n":0}} +{"ts":413576400,"hook":"Game::TechTree::ProcessResearch","mode":"compare","call_id":8,"thread":1412,"depth":0,"args":[{"t":"ptr","v":"0x0e93bea0","n":"tree"},{"t":"ptr","v":"0x0e90c540","n":"owner"},{"t":"i32","v":2,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e96ad78","n":"rng"},{"t":"i32","v":393,"n":"rng_left_in"},{"t":"list","v":[{"t":"struct","v":{"tech_id":{"t":"i32","v":9},"points":{"t":"i32","v":0}}}],"n":"alloc"},{"t":"i32","v":0,"n":"overbudget_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":393},"next_index":{"t":"i64","v":231}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":393},"next_index":{"t":"i64","v":231}}}},"overbudget":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9caf28"},"kids_end":{"t":"ptr","v":"0x0e9caf2c"},"kids_cap":{"t":"ptr","v":"0x0e9caf2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9caf28"},"kids_end":{"t":"ptr","v":"0x0e9caf2c"},"kids_cap":{"t":"ptr","v":"0x0e9caf2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cae68"},"kids_end":{"t":"ptr","v":"0x0e9cae6c"},"kids_cap":{"t":"ptr","v":"0x0e9cae6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cae68"},"kids_end":{"t":"ptr","v":"0x0e9cae6c"},"kids_cap":{"t":"ptr","v":"0x0e9cae6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cadf8"},"kids_end":{"t":"ptr","v":"0x0e9cadfc"},"kids_cap":{"t":"ptr","v":"0x0e9cadfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cadf8"},"kids_end":{"t":"ptr","v":"0x0e9cadfc"},"kids_cap":{"t":"ptr","v":"0x0e9cadfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9caea8"},"kids_end":{"t":"ptr","v":"0x0e9caeb0"},"kids_cap":{"t":"ptr","v":"0x0e9caeb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9caea8"},"kids_end":{"t":"ptr","v":"0x0e9caeb0"},"kids_cap":{"t":"ptr","v":"0x0e9caeb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9caf38"},"kids_end":{"t":"ptr","v":"0x0e9caf40"},"kids_cap":{"t":"ptr","v":"0x0e9caf40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9caf38"},"kids_end":{"t":"ptr","v":"0x0e9caf40"},"kids_cap":{"t":"ptr","v":"0x0e9caf40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cad68"},"kids_end":{"t":"ptr","v":"0x0e9cad6c"},"kids_cap":{"t":"ptr","v":"0x0e9cad6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cad68"},"kids_end":{"t":"ptr","v":"0x0e9cad6c"},"kids_cap":{"t":"ptr","v":"0x0e9cad6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9caeb8"},"kids_end":{"t":"ptr","v":"0x0e9caebc"},"kids_cap":{"t":"ptr","v":"0x0e9caebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9caeb8"},"kids_end":{"t":"ptr","v":"0x0e9caebc"},"kids_cap":{"t":"ptr","v":"0x0e9caebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9caef8"},"kids_end":{"t":"ptr","v":"0x0e9caefc"},"kids_cap":{"t":"ptr","v":"0x0e9caefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9caef8"},"kids_end":{"t":"ptr","v":"0x0e9caefc"},"kids_cap":{"t":"ptr","v":"0x0e9caefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe0e0"},"kids_end":{"t":"ptr","v":"0x0e8fe0ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe0e0"},"kids_end":{"t":"ptr","v":"0x0e8fe0ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cad88"},"kids_end":{"t":"ptr","v":"0x0e9cad90"},"kids_cap":{"t":"ptr","v":"0x0e9cad90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cad88"},"kids_end":{"t":"ptr","v":"0x0e9cad90"},"kids_cap":{"t":"ptr","v":"0x0e9cad90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe038"},"kids_end":{"t":"ptr","v":"0x0e8fe048"},"kids_cap":{"t":"ptr","v":"0x0e8fe048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe038"},"kids_end":{"t":"ptr","v":"0x0e8fe048"},"kids_cap":{"t":"ptr","v":"0x0e8fe048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cadb8"},"kids_end":{"t":"ptr","v":"0x0e9cadbc"},"kids_cap":{"t":"ptr","v":"0x0e9cadbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cadb8"},"kids_end":{"t":"ptr","v":"0x0e9cadbc"},"kids_cap":{"t":"ptr","v":"0x0e9cadbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cae98"},"kids_end":{"t":"ptr","v":"0x0e9cae9c"},"kids_cap":{"t":"ptr","v":"0x0e9cae9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cae98"},"kids_end":{"t":"ptr","v":"0x0e9cae9c"},"kids_cap":{"t":"ptr","v":"0x0e9cae9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fdf90"},"kids_end":{"t":"ptr","v":"0x0e8fdf9c"},"kids_cap":{"t":"ptr","v":"0x0e8fdf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fdf90"},"kids_end":{"t":"ptr","v":"0x0e8fdf9c"},"kids_cap":{"t":"ptr","v":"0x0e8fdf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9caec8"},"kids_end":{"t":"ptr","v":"0x0e9caecc"},"kids_cap":{"t":"ptr","v":"0x0e9caecc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9caec8"},"kids_end":{"t":"ptr","v":"0x0e9caecc"},"kids_cap":{"t":"ptr","v":"0x0e9caecc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cae08"},"kids_end":{"t":"ptr","v":"0x0e9cae0c"},"kids_cap":{"t":"ptr","v":"0x0e9cae0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cae08"},"kids_end":{"t":"ptr","v":"0x0e9cae0c"},"kids_cap":{"t":"ptr","v":"0x0e9cae0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9caed8"},"kids_end":{"t":"ptr","v":"0x0e9caedc"},"kids_cap":{"t":"ptr","v":"0x0e9caedc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9caed8"},"kids_end":{"t":"ptr","v":"0x0e9caedc"},"kids_cap":{"t":"ptr","v":"0x0e9caedc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fdfd8"},"kids_end":{"t":"ptr","v":"0x0e8fdfe4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fdfd8"},"kids_end":{"t":"ptr","v":"0x0e8fdfe4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe158"},"kids_end":{"t":"ptr","v":"0x0e8fe168"},"kids_cap":{"t":"ptr","v":"0x0e8fe168"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe158"},"kids_end":{"t":"ptr","v":"0x0e8fe168"},"kids_cap":{"t":"ptr","v":"0x0e8fe168"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cae18"},"kids_end":{"t":"ptr","v":"0x0e9cae1c"},"kids_cap":{"t":"ptr","v":"0x0e9cae1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cae18"},"kids_end":{"t":"ptr","v":"0x0e9cae1c"},"kids_cap":{"t":"ptr","v":"0x0e9cae1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cae28"},"kids_end":{"t":"ptr","v":"0x0e9cae2c"},"kids_cap":{"t":"ptr","v":"0x0e9cae2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cae28"},"kids_end":{"t":"ptr","v":"0x0e9cae2c"},"kids_cap":{"t":"ptr","v":"0x0e9cae2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb068"},"kids_end":{"t":"ptr","v":"0x0e9cb06c"},"kids_cap":{"t":"ptr","v":"0x0e9cb06c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb068"},"kids_end":{"t":"ptr","v":"0x0e9cb06c"},"kids_cap":{"t":"ptr","v":"0x0e9cb06c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb0d8"},"kids_end":{"t":"ptr","v":"0x0e9cb0dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb0d8"},"kids_end":{"t":"ptr","v":"0x0e9cb0dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9caf48"},"kids_end":{"t":"ptr","v":"0x0e9caf50"},"kids_cap":{"t":"ptr","v":"0x0e9caf50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9caf48"},"kids_end":{"t":"ptr","v":"0x0e9caf50"},"kids_cap":{"t":"ptr","v":"0x0e9caf50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe098"},"kids_end":{"t":"ptr","v":"0x0e8fe0a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe098"},"kids_end":{"t":"ptr","v":"0x0e8fe0a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb088"},"kids_end":{"t":"ptr","v":"0x0e9cb090"},"kids_cap":{"t":"ptr","v":"0x0e9cb090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb088"},"kids_end":{"t":"ptr","v":"0x0e9cb090"},"kids_cap":{"t":"ptr","v":"0x0e9cb090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fdfa8"},"kids_end":{"t":"ptr","v":"0x0e8fdfb4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fdfa8"},"kids_end":{"t":"ptr","v":"0x0e8fdfb4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe1a0"},"kids_end":{"t":"ptr","v":"0x0e8fe1ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe1a0"},"kids_end":{"t":"ptr","v":"0x0e8fe1ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe008"},"kids_end":{"t":"ptr","v":"0x0e8fe014"},"kids_cap":{"t":"ptr","v":"0x0e8fe014"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe008"},"kids_end":{"t":"ptr","v":"0x0e8fe014"},"kids_cap":{"t":"ptr","v":"0x0e8fe014"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9caf98"},"kids_end":{"t":"ptr","v":"0x0e9caf9c"},"kids_cap":{"t":"ptr","v":"0x0e9caf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9caf98"},"kids_end":{"t":"ptr","v":"0x0e9caf9c"},"kids_cap":{"t":"ptr","v":"0x0e9caf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cafd8"},"kids_end":{"t":"ptr","v":"0x0e9cafdc"},"kids_cap":{"t":"ptr","v":"0x0e9cafdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cafd8"},"kids_end":{"t":"ptr","v":"0x0e9cafdc"},"kids_cap":{"t":"ptr","v":"0x0e9cafdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe050"},"kids_end":{"t":"ptr","v":"0x0e8fe05c"},"kids_cap":{"t":"ptr","v":"0x0e8fe05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe050"},"kids_end":{"t":"ptr","v":"0x0e8fe05c"},"kids_cap":{"t":"ptr","v":"0x0e8fe05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9caf58"},"kids_end":{"t":"ptr","v":"0x0e9caf5c"},"kids_cap":{"t":"ptr","v":"0x0e9caf5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9caf58"},"kids_end":{"t":"ptr","v":"0x0e9caf5c"},"kids_cap":{"t":"ptr","v":"0x0e9caf5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9cb0e8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9cb0e8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb0f8"},"kids_end":{"t":"ptr","v":"0x0e9cb0fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb0f8"},"kids_end":{"t":"ptr","v":"0x0e9cb0fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9caf68"},"kids_end":{"t":"ptr","v":"0x0e9caf6c"},"kids_cap":{"t":"ptr","v":"0x0e9caf6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9caf68"},"kids_end":{"t":"ptr","v":"0x0e9caf6c"},"kids_cap":{"t":"ptr","v":"0x0e9caf6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cafc8"},"kids_end":{"t":"ptr","v":"0x0e9cafcc"},"kids_cap":{"t":"ptr","v":"0x0e9cafcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cafc8"},"kids_end":{"t":"ptr","v":"0x0e9cafcc"},"kids_cap":{"t":"ptr","v":"0x0e9cafcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe1d0"},"kids_end":{"t":"ptr","v":"0x0e8fe1dc"},"kids_cap":{"t":"ptr","v":"0x0e8fe1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe1d0"},"kids_end":{"t":"ptr","v":"0x0e8fe1dc"},"kids_cap":{"t":"ptr","v":"0x0e8fe1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9caf78"},"kids_end":{"t":"ptr","v":"0x0e9caf7c"},"kids_cap":{"t":"ptr","v":"0x0e9caf7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9caf78"},"kids_end":{"t":"ptr","v":"0x0e9caf7c"},"kids_cap":{"t":"ptr","v":"0x0e9caf7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb118"},"kids_end":{"t":"ptr","v":"0x0e9cb11c"},"kids_cap":{"t":"ptr","v":"0x0e9cb11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb118"},"kids_end":{"t":"ptr","v":"0x0e9cb11c"},"kids_cap":{"t":"ptr","v":"0x0e9cb11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb108"},"kids_end":{"t":"ptr","v":"0x0e9cb10c"},"kids_cap":{"t":"ptr","v":"0x0e9cb10c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb108"},"kids_end":{"t":"ptr","v":"0x0e9cb10c"},"kids_cap":{"t":"ptr","v":"0x0e9cb10c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb0c8"},"kids_end":{"t":"ptr","v":"0x0e9cb0cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb0c8"},"kids_end":{"t":"ptr","v":"0x0e9cb0cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb098"},"kids_end":{"t":"ptr","v":"0x0e9cb09c"},"kids_cap":{"t":"ptr","v":"0x0e9cb09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb098"},"kids_end":{"t":"ptr","v":"0x0e9cb09c"},"kids_cap":{"t":"ptr","v":"0x0e9cb09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb128"},"kids_end":{"t":"ptr","v":"0x0e9cb12c"},"kids_cap":{"t":"ptr","v":"0x0e9cb12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb128"},"kids_end":{"t":"ptr","v":"0x0e9cb12c"},"kids_cap":{"t":"ptr","v":"0x0e9cb12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9caf88"},"kids_end":{"t":"ptr","v":"0x0e9caf8c"},"kids_cap":{"t":"ptr","v":"0x0e9caf8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9caf88"},"kids_end":{"t":"ptr","v":"0x0e9caf8c"},"kids_cap":{"t":"ptr","v":"0x0e9caf8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe1b8"},"kids_end":{"t":"ptr","v":"0x0e8fe1c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe1b8"},"kids_end":{"t":"ptr","v":"0x0e8fe1c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fdfc0"},"kids_end":{"t":"ptr","v":"0x0e8fdfcc"},"kids_cap":{"t":"ptr","v":"0x0e8fdfcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fdfc0"},"kids_end":{"t":"ptr","v":"0x0e8fdfcc"},"kids_cap":{"t":"ptr","v":"0x0e8fdfcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb078"},"kids_end":{"t":"ptr","v":"0x0e9cb07c"},"kids_cap":{"t":"ptr","v":"0x0e9cb07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb078"},"kids_end":{"t":"ptr","v":"0x0e9cb07c"},"kids_cap":{"t":"ptr","v":"0x0e9cb07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb008"},"kids_end":{"t":"ptr","v":"0x0e9cb010"},"kids_cap":{"t":"ptr","v":"0x0e9cb010"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb008"},"kids_end":{"t":"ptr","v":"0x0e9cb010"},"kids_cap":{"t":"ptr","v":"0x0e9cb010"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cafa8"},"kids_end":{"t":"ptr","v":"0x0e9cafb0"},"kids_cap":{"t":"ptr","v":"0x0e9cafb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cafa8"},"kids_end":{"t":"ptr","v":"0x0e9cafb0"},"kids_cap":{"t":"ptr","v":"0x0e9cafb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88d218"},"kids_end":{"t":"ptr","v":"0x0e88d22c"},"kids_cap":{"t":"ptr","v":"0x0e88d22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88d218"},"kids_end":{"t":"ptr","v":"0x0e88d22c"},"kids_cap":{"t":"ptr","v":"0x0e88d22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fdff0"},"kids_end":{"t":"ptr","v":"0x0e8fdffc"},"kids_cap":{"t":"ptr","v":"0x0e8fdffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fdff0"},"kids_end":{"t":"ptr","v":"0x0e8fdffc"},"kids_cap":{"t":"ptr","v":"0x0e8fdffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969f00"},"kids_end":{"t":"ptr","v":"0x0e969f24"},"kids_cap":{"t":"ptr","v":"0x0e969f24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969f00"},"kids_end":{"t":"ptr","v":"0x0e969f24"},"kids_cap":{"t":"ptr","v":"0x0e969f24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9cafe8"},"kids_end":{"t":"ptr","v":"0x0e9cafec"},"kids_cap":{"t":"ptr","v":"0x0e9cafec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9cafe8"},"kids_end":{"t":"ptr","v":"0x0e9cafec"},"kids_cap":{"t":"ptr","v":"0x0e9cafec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9cafb8"},"kids_end":{"t":"ptr","v":"0x0e9cafbc"},"kids_cap":{"t":"ptr","v":"0x0e9cafbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9cafb8"},"kids_end":{"t":"ptr","v":"0x0e9cafbc"},"kids_cap":{"t":"ptr","v":"0x0e9cafbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fe110"},"kids_end":{"t":"ptr","v":"0x0e8fe11c"},"kids_cap":{"t":"ptr","v":"0x0e8fe11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fe110"},"kids_end":{"t":"ptr","v":"0x0e8fe11c"},"kids_cap":{"t":"ptr","v":"0x0e8fe11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb138"},"kids_end":{"t":"ptr","v":"0x0e9cb13c"},"kids_cap":{"t":"ptr","v":"0x0e9cb13c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb138"},"kids_end":{"t":"ptr","v":"0x0e9cb13c"},"kids_cap":{"t":"ptr","v":"0x0e9cb13c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9caff8"},"kids_end":{"t":"ptr","v":"0x0e9caffc"},"kids_cap":{"t":"ptr","v":"0x0e9caffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9caff8"},"kids_end":{"t":"ptr","v":"0x0e9caffc"},"kids_cap":{"t":"ptr","v":"0x0e9caffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb018"},"kids_end":{"t":"ptr","v":"0x0e9cb01c"},"kids_cap":{"t":"ptr","v":"0x0e9cb01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb018"},"kids_end":{"t":"ptr","v":"0x0e9cb01c"},"kids_cap":{"t":"ptr","v":"0x0e9cb01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb0a8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb0a8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb028"},"kids_end":{"t":"ptr","v":"0x0e9cb02c"},"kids_cap":{"t":"ptr","v":"0x0e9cb02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb028"},"kids_end":{"t":"ptr","v":"0x0e9cb02c"},"kids_cap":{"t":"ptr","v":"0x0e9cb02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb038"},"kids_end":{"t":"ptr","v":"0x0e9cb040"},"kids_cap":{"t":"ptr","v":"0x0e9cb040"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb038"},"kids_end":{"t":"ptr","v":"0x0e9cb040"},"kids_cap":{"t":"ptr","v":"0x0e9cb040"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb048"},"kids_end":{"t":"ptr","v":"0x0e9cb050"},"kids_cap":{"t":"ptr","v":"0x0e9cb050"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb048"},"kids_end":{"t":"ptr","v":"0x0e9cb050"},"kids_cap":{"t":"ptr","v":"0x0e9cb050"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d358"},"kids_end":{"t":"ptr","v":"0x0e88d36c"},"kids_cap":{"t":"ptr","v":"0x0e88d36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d358"},"kids_end":{"t":"ptr","v":"0x0e88d36c"},"kids_cap":{"t":"ptr","v":"0x0e88d36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe218"},"kids_end":{"t":"ptr","v":"0x0e8fe224"},"kids_cap":{"t":"ptr","v":"0x0e8fe224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe218"},"kids_end":{"t":"ptr","v":"0x0e8fe224"},"kids_cap":{"t":"ptr","v":"0x0e8fe224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb058"},"kids_end":{"t":"ptr","v":"0x0e9cb05c"},"kids_cap":{"t":"ptr","v":"0x0e9cb05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb058"},"kids_end":{"t":"ptr","v":"0x0e9cb05c"},"kids_cap":{"t":"ptr","v":"0x0e9cb05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb0b8"},"kids_end":{"t":"ptr","v":"0x0e9cb0bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb0b8"},"kids_end":{"t":"ptr","v":"0x0e9cb0bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e92edd8"},"kids_end":{"t":"ptr","v":"0x0e92eddc"},"kids_cap":{"t":"ptr","v":"0x0e92eddc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e92edd8"},"kids_end":{"t":"ptr","v":"0x0e92eddc"},"kids_cap":{"t":"ptr","v":"0x0e92eddc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e92ed78"},"kids_end":{"t":"ptr","v":"0x0e92ed7c"},"kids_cap":{"t":"ptr","v":"0x0e92ed7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e92ed78"},"kids_end":{"t":"ptr","v":"0x0e92ed7c"},"kids_cap":{"t":"ptr","v":"0x0e92ed7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e92ede8"},"kids_end":{"t":"ptr","v":"0x0e92edf0"},"kids_cap":{"t":"ptr","v":"0x0e92edf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e92ede8"},"kids_end":{"t":"ptr","v":"0x0e92edf0"},"kids_cap":{"t":"ptr","v":"0x0e92edf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe020"},"kids_end":{"t":"ptr","v":"0x0e8fe02c"},"kids_cap":{"t":"ptr","v":"0x0e8fe02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe020"},"kids_end":{"t":"ptr","v":"0x0e8fe02c"},"kids_cap":{"t":"ptr","v":"0x0e8fe02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e92edb8"},"kids_end":{"t":"ptr","v":"0x0e92edc0"},"kids_cap":{"t":"ptr","v":"0x0e92edc0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e92edb8"},"kids_end":{"t":"ptr","v":"0x0e92edc0"},"kids_cap":{"t":"ptr","v":"0x0e92edc0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e92ee48"},"kids_end":{"t":"ptr","v":"0x0e92ee50"},"kids_cap":{"t":"ptr","v":"0x0e92ee50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e92ee48"},"kids_end":{"t":"ptr","v":"0x0e92ee50"},"kids_cap":{"t":"ptr","v":"0x0e92ee50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e92eeb8"},"kids_end":{"t":"ptr","v":"0x0e92eebc"},"kids_cap":{"t":"ptr","v":"0x0e92eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e92eeb8"},"kids_end":{"t":"ptr","v":"0x0e92eebc"},"kids_cap":{"t":"ptr","v":"0x0e92eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe0c8"},"kids_end":{"t":"ptr","v":"0x0e8fe0d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe0c8"},"kids_end":{"t":"ptr","v":"0x0e8fe0d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fe0f8"},"kids_end":{"t":"ptr","v":"0x0e8fe104"},"kids_cap":{"t":"ptr","v":"0x0e8fe104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fe0f8"},"kids_end":{"t":"ptr","v":"0x0e8fe104"},"kids_cap":{"t":"ptr","v":"0x0e8fe104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe350"},"kids_end":{"t":"ptr","v":"0x0e8fe360"},"kids_cap":{"t":"ptr","v":"0x0e8fe360"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe350"},"kids_end":{"t":"ptr","v":"0x0e8fe360"},"kids_cap":{"t":"ptr","v":"0x0e8fe360"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e92eec8"},"kids_end":{"t":"ptr","v":"0x0e92eed0"},"kids_cap":{"t":"ptr","v":"0x0e92eed0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e92eec8"},"kids_end":{"t":"ptr","v":"0x0e92eed0"},"kids_cap":{"t":"ptr","v":"0x0e92eed0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e92ee18"},"kids_end":{"t":"ptr","v":"0x0e92ee1c"},"kids_cap":{"t":"ptr","v":"0x0e92ee1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e92ee18"},"kids_end":{"t":"ptr","v":"0x0e92ee1c"},"kids_cap":{"t":"ptr","v":"0x0e92ee1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe380"},"kids_end":{"t":"ptr","v":"0x0e8fe38c"},"kids_cap":{"t":"ptr","v":"0x0e8fe38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe380"},"kids_end":{"t":"ptr","v":"0x0e8fe38c"},"kids_cap":{"t":"ptr","v":"0x0e8fe38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e92ee58"},"kids_end":{"t":"ptr","v":"0x0e92ee5c"},"kids_cap":{"t":"ptr","v":"0x0e92ee5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e92ee58"},"kids_end":{"t":"ptr","v":"0x0e92ee5c"},"kids_cap":{"t":"ptr","v":"0x0e92ee5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e92edc8"},"kids_end":{"t":"ptr","v":"0x0e92edcc"},"kids_cap":{"t":"ptr","v":"0x0e92edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e92edc8"},"kids_end":{"t":"ptr","v":"0x0e92edcc"},"kids_cap":{"t":"ptr","v":"0x0e92edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e92ee28"},"kids_end":{"t":"ptr","v":"0x0e92ee2c"},"kids_cap":{"t":"ptr","v":"0x0e92ee2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e92ee28"},"kids_end":{"t":"ptr","v":"0x0e92ee2c"},"kids_cap":{"t":"ptr","v":"0x0e92ee2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e92ece8"},"kids_end":{"t":"ptr","v":"0x0e92ecec"},"kids_cap":{"t":"ptr","v":"0x0e92ecec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e92ece8"},"kids_end":{"t":"ptr","v":"0x0e92ecec"},"kids_cap":{"t":"ptr","v":"0x0e92ecec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe3e0"},"kids_end":{"t":"ptr","v":"0x0e8fe3ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe3e0"},"kids_end":{"t":"ptr","v":"0x0e8fe3ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e92ed38"},"kids_end":{"t":"ptr","v":"0x0e92ed3c"},"kids_cap":{"t":"ptr","v":"0x0e92ed3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e92ed38"},"kids_end":{"t":"ptr","v":"0x0e92ed3c"},"kids_cap":{"t":"ptr","v":"0x0e92ed3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e92ed58"},"kids_end":{"t":"ptr","v":"0x0e92ed60"},"kids_cap":{"t":"ptr","v":"0x0e92ed60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e92ed58"},"kids_end":{"t":"ptr","v":"0x0e92ed60"},"kids_cap":{"t":"ptr","v":"0x0e92ed60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fe6f8"},"kids_end":{"t":"ptr","v":"0x0e8fe704"},"kids_cap":{"t":"ptr","v":"0x0e8fe704"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fe6f8"},"kids_end":{"t":"ptr","v":"0x0e8fe704"},"kids_cap":{"t":"ptr","v":"0x0e8fe704"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e92edf8"},"kids_end":{"t":"ptr","v":"0x0e92edfc"},"kids_cap":{"t":"ptr","v":"0x0e92edfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e92edf8"},"kids_end":{"t":"ptr","v":"0x0e92edfc"},"kids_cap":{"t":"ptr","v":"0x0e92edfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e92ee38"},"kids_end":{"t":"ptr","v":"0x0e92ee40"},"kids_cap":{"t":"ptr","v":"0x0e92ee40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e92ee38"},"kids_end":{"t":"ptr","v":"0x0e92ee40"},"kids_cap":{"t":"ptr","v":"0x0e92ee40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e92ee08"},"kids_end":{"t":"ptr","v":"0x0e92ee0c"},"kids_cap":{"t":"ptr","v":"0x0e92ee0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e92ee08"},"kids_end":{"t":"ptr","v":"0x0e92ee0c"},"kids_cap":{"t":"ptr","v":"0x0e92ee0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e92ee68"},"kids_end":{"t":"ptr","v":"0x0e92ee70"},"kids_cap":{"t":"ptr","v":"0x0e92ee70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e92ee68"},"kids_end":{"t":"ptr","v":"0x0e92ee70"},"kids_cap":{"t":"ptr","v":"0x0e92ee70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e92ee78"},"kids_end":{"t":"ptr","v":"0x0e92ee80"},"kids_cap":{"t":"ptr","v":"0x0e92ee80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e92ee78"},"kids_end":{"t":"ptr","v":"0x0e92ee80"},"kids_cap":{"t":"ptr","v":"0x0e92ee80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e92ed48"},"kids_end":{"t":"ptr","v":"0x0e92ed50"},"kids_cap":{"t":"ptr","v":"0x0e92ed50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e92ed48"},"kids_end":{"t":"ptr","v":"0x0e92ed50"},"kids_cap":{"t":"ptr","v":"0x0e92ed50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e92eed8"},"kids_end":{"t":"ptr","v":"0x0e92eee0"},"kids_cap":{"t":"ptr","v":"0x0e92eee0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e92eed8"},"kids_end":{"t":"ptr","v":"0x0e92eee0"},"kids_cap":{"t":"ptr","v":"0x0e92eee0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e92ed88"},"kids_end":{"t":"ptr","v":"0x0e92ed8c"},"kids_cap":{"t":"ptr","v":"0x0e92ed8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e92ed88"},"kids_end":{"t":"ptr","v":"0x0e92ed8c"},"kids_cap":{"t":"ptr","v":"0x0e92ed8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e92ed68"},"kids_end":{"t":"ptr","v":"0x0e92ed6c"},"kids_cap":{"t":"ptr","v":"0x0e92ed6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e92ed68"},"kids_end":{"t":"ptr","v":"0x0e92ed6c"},"kids_cap":{"t":"ptr","v":"0x0e92ed6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e92ecf8"},"kids_end":{"t":"ptr","v":"0x0e92ed00"},"kids_cap":{"t":"ptr","v":"0x0e92ed00"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e92ecf8"},"kids_end":{"t":"ptr","v":"0x0e92ed00"},"kids_cap":{"t":"ptr","v":"0x0e92ed00"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e92ed08"},"kids_end":{"t":"ptr","v":"0x0e92ed10"},"kids_cap":{"t":"ptr","v":"0x0e92ed10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e92ed08"},"kids_end":{"t":"ptr","v":"0x0e92ed10"},"kids_cap":{"t":"ptr","v":"0x0e92ed10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e92ee98"},"kids_end":{"t":"ptr","v":"0x0e92ee9c"},"kids_cap":{"t":"ptr","v":"0x0e92ee9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e92ee98"},"kids_end":{"t":"ptr","v":"0x0e92ee9c"},"kids_cap":{"t":"ptr","v":"0x0e92ee9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e92ed18"},"kids_end":{"t":"ptr","v":"0x0e92ed1c"},"kids_cap":{"t":"ptr","v":"0x0e92ed1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e92ed18"},"kids_end":{"t":"ptr","v":"0x0e92ed1c"},"kids_cap":{"t":"ptr","v":"0x0e92ed1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e92ee88"},"kids_end":{"t":"ptr","v":"0x0e92ee90"},"kids_cap":{"t":"ptr","v":"0x0e92ee90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e92ee88"},"kids_end":{"t":"ptr","v":"0x0e92ee90"},"kids_cap":{"t":"ptr","v":"0x0e92ee90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e92eea8"},"kids_end":{"t":"ptr","v":"0x0e92eeac"},"kids_cap":{"t":"ptr","v":"0x0e92eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e92eea8"},"kids_end":{"t":"ptr","v":"0x0e92eeac"},"kids_cap":{"t":"ptr","v":"0x0e92eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e92ed28"},"kids_end":{"t":"ptr","v":"0x0e92ed2c"},"kids_cap":{"t":"ptr","v":"0x0e92ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e92ed28"},"kids_end":{"t":"ptr","v":"0x0e92ed2c"},"kids_cap":{"t":"ptr","v":"0x0e92ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e92ed98"},"kids_end":{"t":"ptr","v":"0x0e92eda0"},"kids_cap":{"t":"ptr","v":"0x0e92eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e92ed98"},"kids_end":{"t":"ptr","v":"0x0e92eda0"},"kids_cap":{"t":"ptr","v":"0x0e92eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e92eda8"},"kids_end":{"t":"ptr","v":"0x0e92edac"},"kids_cap":{"t":"ptr","v":"0x0e92edac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e92eda8"},"kids_end":{"t":"ptr","v":"0x0e92edac"},"kids_cap":{"t":"ptr","v":"0x0e92edac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e92f7a8"},"kids_end":{"t":"ptr","v":"0x0e92f7ac"},"kids_cap":{"t":"ptr","v":"0x0e92f7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e92f7a8"},"kids_end":{"t":"ptr","v":"0x0e92f7ac"},"kids_cap":{"t":"ptr","v":"0x0e92f7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fe6c8"},"kids_end":{"t":"ptr","v":"0x0e8fe6d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fe6c8"},"kids_end":{"t":"ptr","v":"0x0e8fe6d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fe620"},"kids_end":{"t":"ptr","v":"0x0e8fe630"},"kids_cap":{"t":"ptr","v":"0x0e8fe630"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fe620"},"kids_end":{"t":"ptr","v":"0x0e8fe630"},"kids_cap":{"t":"ptr","v":"0x0e8fe630"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e92f6e8"},"kids_end":{"t":"ptr","v":"0x0e92f6f0"},"kids_cap":{"t":"ptr","v":"0x0e92f6f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e92f6e8"},"kids_end":{"t":"ptr","v":"0x0e92f6f0"},"kids_cap":{"t":"ptr","v":"0x0e92f6f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e92f7b8"},"kids_end":{"t":"ptr","v":"0x0e92f7c0"},"kids_cap":{"t":"ptr","v":"0x0e92f7c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e92f7b8"},"kids_end":{"t":"ptr","v":"0x0e92f7c0"},"kids_cap":{"t":"ptr","v":"0x0e92f7c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e92f818"},"kids_end":{"t":"ptr","v":"0x0e92f81c"},"kids_cap":{"t":"ptr","v":"0x0e92f81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e92f818"},"kids_end":{"t":"ptr","v":"0x0e92f81c"},"kids_cap":{"t":"ptr","v":"0x0e92f81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e92f6f8"},"kids_end":{"t":"ptr","v":"0x0e92f700"},"kids_cap":{"t":"ptr","v":"0x0e92f700"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e92f6f8"},"kids_end":{"t":"ptr","v":"0x0e92f700"},"kids_cap":{"t":"ptr","v":"0x0e92f700"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e92f7d8"},"kids_end":{"t":"ptr","v":"0x0e92f7e0"},"kids_cap":{"t":"ptr","v":"0x0e92f7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e92f7d8"},"kids_end":{"t":"ptr","v":"0x0e92f7e0"},"kids_cap":{"t":"ptr","v":"0x0e92f7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e92f708"},"kids_end":{"t":"ptr","v":"0x0e92f710"},"kids_cap":{"t":"ptr","v":"0x0e92f710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e92f708"},"kids_end":{"t":"ptr","v":"0x0e92f710"},"kids_cap":{"t":"ptr","v":"0x0e92f710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e92f7e8"},"kids_end":{"t":"ptr","v":"0x0e92f7ec"},"kids_cap":{"t":"ptr","v":"0x0e92f7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e92f7e8"},"kids_end":{"t":"ptr","v":"0x0e92f7ec"},"kids_cap":{"t":"ptr","v":"0x0e92f7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e92f7f8"},"kids_end":{"t":"ptr","v":"0x0e92f7fc"},"kids_cap":{"t":"ptr","v":"0x0e92f7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e92f7f8"},"kids_end":{"t":"ptr","v":"0x0e92f7fc"},"kids_cap":{"t":"ptr","v":"0x0e92f7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e92f808"},"kids_end":{"t":"ptr","v":"0x0e92f810"},"kids_cap":{"t":"ptr","v":"0x0e92f810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e92f808"},"kids_end":{"t":"ptr","v":"0x0e92f810"},"kids_cap":{"t":"ptr","v":"0x0e92f810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e92fa68"},"kids_end":{"t":"ptr","v":"0x0e92fa6c"},"kids_cap":{"t":"ptr","v":"0x0e92fa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e92fa68"},"kids_end":{"t":"ptr","v":"0x0e92fa6c"},"kids_cap":{"t":"ptr","v":"0x0e92fa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe728"},"kids_end":{"t":"ptr","v":"0x0e8fe734"},"kids_cap":{"t":"ptr","v":"0x0e8fe734"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe728"},"kids_end":{"t":"ptr","v":"0x0e8fe734"},"kids_cap":{"t":"ptr","v":"0x0e8fe734"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e92f908"},"kids_end":{"t":"ptr","v":"0x0e92f90c"},"kids_cap":{"t":"ptr","v":"0x0e92f90c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e92f908"},"kids_end":{"t":"ptr","v":"0x0e92f90c"},"kids_cap":{"t":"ptr","v":"0x0e92f90c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d258"},"kids_end":{"t":"ptr","v":"0x0e88d26c"},"kids_cap":{"t":"ptr","v":"0x0e88d26c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d258"},"kids_end":{"t":"ptr","v":"0x0e88d26c"},"kids_cap":{"t":"ptr","v":"0x0e88d26c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e92faa8"},"kids_end":{"t":"ptr","v":"0x0e92faac"},"kids_cap":{"t":"ptr","v":"0x0e92faac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e92faa8"},"kids_end":{"t":"ptr","v":"0x0e92faac"},"kids_cap":{"t":"ptr","v":"0x0e92faac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e92f938"},"kids_end":{"t":"ptr","v":"0x0e92f93c"},"kids_cap":{"t":"ptr","v":"0x0e92f93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e92f938"},"kids_end":{"t":"ptr","v":"0x0e92f93c"},"kids_cap":{"t":"ptr","v":"0x0e92f93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e92f988"},"kids_end":{"t":"ptr","v":"0x0e92f98c"},"kids_cap":{"t":"ptr","v":"0x0e92f98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e92f988"},"kids_end":{"t":"ptr","v":"0x0e92f98c"},"kids_cap":{"t":"ptr","v":"0x0e92f98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e92f9f8"},"kids_end":{"t":"ptr","v":"0x0e92f9fc"},"kids_cap":{"t":"ptr","v":"0x0e92f9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e92f9f8"},"kids_end":{"t":"ptr","v":"0x0e92f9fc"},"kids_cap":{"t":"ptr","v":"0x0e92f9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9309f8"},"kids_end":{"t":"ptr","v":"0x0e9309fc"},"kids_cap":{"t":"ptr","v":"0x0e9309fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9309f8"},"kids_end":{"t":"ptr","v":"0x0e9309fc"},"kids_cap":{"t":"ptr","v":"0x0e9309fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe740"},"kids_end":{"t":"ptr","v":"0x0e8fe750"},"kids_cap":{"t":"ptr","v":"0x0e8fe750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe740"},"kids_end":{"t":"ptr","v":"0x0e8fe750"},"kids_cap":{"t":"ptr","v":"0x0e8fe750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fe638"},"kids_end":{"t":"ptr","v":"0x0e8fe644"},"kids_cap":{"t":"ptr","v":"0x0e8fe644"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fe638"},"kids_end":{"t":"ptr","v":"0x0e8fe644"},"kids_cap":{"t":"ptr","v":"0x0e8fe644"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e930908"},"kids_end":{"t":"ptr","v":"0x0e93090c"},"kids_cap":{"t":"ptr","v":"0x0e93090c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e930908"},"kids_end":{"t":"ptr","v":"0x0e93090c"},"kids_cap":{"t":"ptr","v":"0x0e93090c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9309a8"},"kids_end":{"t":"ptr","v":"0x0e9309ac"},"kids_cap":{"t":"ptr","v":"0x0e9309ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9309a8"},"kids_end":{"t":"ptr","v":"0x0e9309ac"},"kids_cap":{"t":"ptr","v":"0x0e9309ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe7e8"},"kids_end":{"t":"ptr","v":"0x0e8fe7f8"},"kids_cap":{"t":"ptr","v":"0x0e8fe7f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe7e8"},"kids_end":{"t":"ptr","v":"0x0e8fe7f8"},"kids_cap":{"t":"ptr","v":"0x0e8fe7f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9308e8"},"kids_end":{"t":"ptr","v":"0x0e9308f0"},"kids_cap":{"t":"ptr","v":"0x0e9308f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9308e8"},"kids_end":{"t":"ptr","v":"0x0e9308f0"},"kids_cap":{"t":"ptr","v":"0x0e9308f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e930968"},"kids_end":{"t":"ptr","v":"0x0e93096c"},"kids_cap":{"t":"ptr","v":"0x0e93096c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e930968"},"kids_end":{"t":"ptr","v":"0x0e93096c"},"kids_cap":{"t":"ptr","v":"0x0e93096c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e930978"},"kids_end":{"t":"ptr","v":"0x0e93097c"},"kids_cap":{"t":"ptr","v":"0x0e93097c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e930978"},"kids_end":{"t":"ptr","v":"0x0e93097c"},"kids_cap":{"t":"ptr","v":"0x0e93097c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fe758"},"kids_end":{"t":"ptr","v":"0x0e8fe764"},"kids_cap":{"t":"ptr","v":"0x0e8fe764"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fe758"},"kids_end":{"t":"ptr","v":"0x0e8fe764"},"kids_cap":{"t":"ptr","v":"0x0e8fe764"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9308f8"},"kids_end":{"t":"ptr","v":"0x0e930900"},"kids_cap":{"t":"ptr","v":"0x0e930900"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9308f8"},"kids_end":{"t":"ptr","v":"0x0e930900"},"kids_cap":{"t":"ptr","v":"0x0e930900"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d0b8"},"kids_end":{"t":"ptr","v":"0x0e88d0cc"},"kids_cap":{"t":"ptr","v":"0x0e88d0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d0b8"},"kids_end":{"t":"ptr","v":"0x0e88d0cc"},"kids_cap":{"t":"ptr","v":"0x0e88d0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e930918"},"kids_end":{"t":"ptr","v":"0x0e93091c"},"kids_cap":{"t":"ptr","v":"0x0e93091c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e930918"},"kids_end":{"t":"ptr","v":"0x0e93091c"},"kids_cap":{"t":"ptr","v":"0x0e93091c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e930988"},"kids_end":{"t":"ptr","v":"0x0e93098c"},"kids_cap":{"t":"ptr","v":"0x0e93098c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e930988"},"kids_end":{"t":"ptr","v":"0x0e93098c"},"kids_cap":{"t":"ptr","v":"0x0e93098c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9309d8"},"kids_end":{"t":"ptr","v":"0x0e9309dc"},"kids_cap":{"t":"ptr","v":"0x0e9309dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9309d8"},"kids_end":{"t":"ptr","v":"0x0e9309dc"},"kids_cap":{"t":"ptr","v":"0x0e9309dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e930998"},"kids_end":{"t":"ptr","v":"0x0e93099c"},"kids_cap":{"t":"ptr","v":"0x0e93099c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e930998"},"kids_end":{"t":"ptr","v":"0x0e93099c"},"kids_cap":{"t":"ptr","v":"0x0e93099c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9309b8"},"kids_end":{"t":"ptr","v":"0x0e9309bc"},"kids_cap":{"t":"ptr","v":"0x0e9309bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9309b8"},"kids_end":{"t":"ptr","v":"0x0e9309bc"},"kids_cap":{"t":"ptr","v":"0x0e9309bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e92eb48"},"kids_end":{"t":"ptr","v":"0x0e92eb50"},"kids_cap":{"t":"ptr","v":"0x0e92eb50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e92eb48"},"kids_end":{"t":"ptr","v":"0x0e92eb50"},"kids_cap":{"t":"ptr","v":"0x0e92eb50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d1b8"},"kids_end":{"t":"ptr","v":"0x0e88d1cc"},"kids_cap":{"t":"ptr","v":"0x0e88d1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d1b8"},"kids_end":{"t":"ptr","v":"0x0e88d1cc"},"kids_cap":{"t":"ptr","v":"0x0e88d1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e92ecb8"},"kids_end":{"t":"ptr","v":"0x0e92ecbc"},"kids_cap":{"t":"ptr","v":"0x0e92ecbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e92ecb8"},"kids_end":{"t":"ptr","v":"0x0e92ecbc"},"kids_cap":{"t":"ptr","v":"0x0e92ecbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e92eb68"},"kids_end":{"t":"ptr","v":"0x0e92eb6c"},"kids_cap":{"t":"ptr","v":"0x0e92eb6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e92eb68"},"kids_end":{"t":"ptr","v":"0x0e92eb6c"},"kids_cap":{"t":"ptr","v":"0x0e92eb6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e92ebd8"},"kids_end":{"t":"ptr","v":"0x0e92ebdc"},"kids_cap":{"t":"ptr","v":"0x0e92ebdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e92ebd8"},"kids_end":{"t":"ptr","v":"0x0e92ebdc"},"kids_cap":{"t":"ptr","v":"0x0e92ebdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e92eb18"},"kids_end":{"t":"ptr","v":"0x0e92eb20"},"kids_cap":{"t":"ptr","v":"0x0e92eb20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e92eb18"},"kids_end":{"t":"ptr","v":"0x0e92eb20"},"kids_cap":{"t":"ptr","v":"0x0e92eb20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e92eb78"},"kids_end":{"t":"ptr","v":"0x0e92eb80"},"kids_cap":{"t":"ptr","v":"0x0e92eb80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e92eb78"},"kids_end":{"t":"ptr","v":"0x0e92eb80"},"kids_cap":{"t":"ptr","v":"0x0e92eb80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e92ec98"},"kids_end":{"t":"ptr","v":"0x0e92eca0"},"kids_cap":{"t":"ptr","v":"0x0e92eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e92ec98"},"kids_end":{"t":"ptr","v":"0x0e92eca0"},"kids_cap":{"t":"ptr","v":"0x0e92eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e92eb58"},"kids_end":{"t":"ptr","v":"0x0e92eb5c"},"kids_cap":{"t":"ptr","v":"0x0e92eb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e92eb58"},"kids_end":{"t":"ptr","v":"0x0e92eb5c"},"kids_cap":{"t":"ptr","v":"0x0e92eb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e92eca8"},"kids_end":{"t":"ptr","v":"0x0e92ecac"},"kids_cap":{"t":"ptr","v":"0x0e92ecac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e92eca8"},"kids_end":{"t":"ptr","v":"0x0e92ecac"},"kids_cap":{"t":"ptr","v":"0x0e92ecac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe5c0"},"kids_end":{"t":"ptr","v":"0x0e8fe5cc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe5c0"},"kids_end":{"t":"ptr","v":"0x0e8fe5cc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe800"},"kids_end":{"t":"ptr","v":"0x0e8fe80c"},"kids_cap":{"t":"ptr","v":"0x0e8fe80c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe800"},"kids_end":{"t":"ptr","v":"0x0e8fe80c"},"kids_cap":{"t":"ptr","v":"0x0e8fe80c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe770"},"kids_end":{"t":"ptr","v":"0x0e8fe77c"},"kids_cap":{"t":"ptr","v":"0x0e8fe77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe770"},"kids_end":{"t":"ptr","v":"0x0e8fe77c"},"kids_cap":{"t":"ptr","v":"0x0e8fe77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe7a0"},"kids_end":{"t":"ptr","v":"0x0e8fe7ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe7a0"},"kids_end":{"t":"ptr","v":"0x0e8fe7ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe818"},"kids_end":{"t":"ptr","v":"0x0e8fe824"},"kids_cap":{"t":"ptr","v":"0x0e8fe824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe818"},"kids_end":{"t":"ptr","v":"0x0e8fe824"},"kids_cap":{"t":"ptr","v":"0x0e8fe824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d1f8"},"kids_end":{"t":"ptr","v":"0x0e88d210"},"kids_cap":{"t":"ptr","v":"0x0e88d210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d1f8"},"kids_end":{"t":"ptr","v":"0x0e88d210"},"kids_cap":{"t":"ptr","v":"0x0e88d210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e92ec28"},"kids_end":{"t":"ptr","v":"0x0e92ec30"},"kids_cap":{"t":"ptr","v":"0x0e92ec30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e92ec28"},"kids_end":{"t":"ptr","v":"0x0e92ec30"},"kids_cap":{"t":"ptr","v":"0x0e92ec30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e92ec68"},"kids_end":{"t":"ptr","v":"0x0e92ec70"},"kids_cap":{"t":"ptr","v":"0x0e92ec70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e92ec68"},"kids_end":{"t":"ptr","v":"0x0e92ec70"},"kids_cap":{"t":"ptr","v":"0x0e92ec70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e92eba8"},"kids_end":{"t":"ptr","v":"0x0e92ebb0"},"kids_cap":{"t":"ptr","v":"0x0e92ebb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e92eba8"},"kids_end":{"t":"ptr","v":"0x0e92ebb0"},"kids_cap":{"t":"ptr","v":"0x0e92ebb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e92ec18"},"kids_end":{"t":"ptr","v":"0x0e92ec20"},"kids_cap":{"t":"ptr","v":"0x0e92ec20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e92ec18"},"kids_end":{"t":"ptr","v":"0x0e92ec20"},"kids_cap":{"t":"ptr","v":"0x0e92ec20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e92eae8"},"kids_end":{"t":"ptr","v":"0x0e92eaec"},"kids_cap":{"t":"ptr","v":"0x0e92eaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e92eae8"},"kids_end":{"t":"ptr","v":"0x0e92eaec"},"kids_cap":{"t":"ptr","v":"0x0e92eaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e92ec58"},"kids_end":{"t":"ptr","v":"0x0e92ec5c"},"kids_cap":{"t":"ptr","v":"0x0e92ec5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e92ec58"},"kids_end":{"t":"ptr","v":"0x0e92ec5c"},"kids_cap":{"t":"ptr","v":"0x0e92ec5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e92ec08"},"kids_end":{"t":"ptr","v":"0x0e92ec0c"},"kids_cap":{"t":"ptr","v":"0x0e92ec0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e92ec08"},"kids_end":{"t":"ptr","v":"0x0e92ec0c"},"kids_cap":{"t":"ptr","v":"0x0e92ec0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e92ecc8"},"kids_end":{"t":"ptr","v":"0x0e92eccc"},"kids_cap":{"t":"ptr","v":"0x0e92eccc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e92ecc8"},"kids_end":{"t":"ptr","v":"0x0e92eccc"},"kids_cap":{"t":"ptr","v":"0x0e92eccc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e92ecd8"},"kids_end":{"t":"ptr","v":"0x0e92ecdc"},"kids_cap":{"t":"ptr","v":"0x0e92ecdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e92ecd8"},"kids_end":{"t":"ptr","v":"0x0e92ecdc"},"kids_cap":{"t":"ptr","v":"0x0e92ecdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e92eb88"},"kids_end":{"t":"ptr","v":"0x0e92eb8c"},"kids_cap":{"t":"ptr","v":"0x0e92eb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e92eb88"},"kids_end":{"t":"ptr","v":"0x0e92eb8c"},"kids_cap":{"t":"ptr","v":"0x0e92eb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e92ebb8"},"kids_end":{"t":"ptr","v":"0x0e92ebbc"},"kids_cap":{"t":"ptr","v":"0x0e92ebbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e92ebb8"},"kids_end":{"t":"ptr","v":"0x0e92ebbc"},"kids_cap":{"t":"ptr","v":"0x0e92ebbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e92eaf8"},"kids_end":{"t":"ptr","v":"0x0e92eafc"},"kids_cap":{"t":"ptr","v":"0x0e92eafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e92eaf8"},"kids_end":{"t":"ptr","v":"0x0e92eafc"},"kids_cap":{"t":"ptr","v":"0x0e92eafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e92eb98"},"kids_end":{"t":"ptr","v":"0x0e92eb9c"},"kids_cap":{"t":"ptr","v":"0x0e92eb9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e92eb98"},"kids_end":{"t":"ptr","v":"0x0e92eb9c"},"kids_cap":{"t":"ptr","v":"0x0e92eb9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e92ebe8"},"kids_end":{"t":"ptr","v":"0x0e92ebec"},"kids_cap":{"t":"ptr","v":"0x0e92ebec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e92ebe8"},"kids_end":{"t":"ptr","v":"0x0e92ebec"},"kids_cap":{"t":"ptr","v":"0x0e92ebec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e92eb08"},"kids_end":{"t":"ptr","v":"0x0e92eb0c"},"kids_cap":{"t":"ptr","v":"0x0e92eb0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e92eb08"},"kids_end":{"t":"ptr","v":"0x0e92eb0c"},"kids_cap":{"t":"ptr","v":"0x0e92eb0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"before":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}},"ours":{"ret":null,"side":{"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":393},"next_index":{"t":"i64","v":231}}}},"overbudget":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9caf28"},"kids_end":{"t":"ptr","v":"0x0e9caf2c"},"kids_cap":{"t":"ptr","v":"0x0e9caf2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cae68"},"kids_end":{"t":"ptr","v":"0x0e9cae6c"},"kids_cap":{"t":"ptr","v":"0x0e9cae6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cadf8"},"kids_end":{"t":"ptr","v":"0x0e9cadfc"},"kids_cap":{"t":"ptr","v":"0x0e9cadfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9caea8"},"kids_end":{"t":"ptr","v":"0x0e9caeb0"},"kids_cap":{"t":"ptr","v":"0x0e9caeb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9caf38"},"kids_end":{"t":"ptr","v":"0x0e9caf40"},"kids_cap":{"t":"ptr","v":"0x0e9caf40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cad68"},"kids_end":{"t":"ptr","v":"0x0e9cad6c"},"kids_cap":{"t":"ptr","v":"0x0e9cad6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9caeb8"},"kids_end":{"t":"ptr","v":"0x0e9caebc"},"kids_cap":{"t":"ptr","v":"0x0e9caebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9caef8"},"kids_end":{"t":"ptr","v":"0x0e9caefc"},"kids_cap":{"t":"ptr","v":"0x0e9caefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe0e0"},"kids_end":{"t":"ptr","v":"0x0e8fe0ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cad88"},"kids_end":{"t":"ptr","v":"0x0e9cad90"},"kids_cap":{"t":"ptr","v":"0x0e9cad90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe038"},"kids_end":{"t":"ptr","v":"0x0e8fe048"},"kids_cap":{"t":"ptr","v":"0x0e8fe048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cadb8"},"kids_end":{"t":"ptr","v":"0x0e9cadbc"},"kids_cap":{"t":"ptr","v":"0x0e9cadbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cae98"},"kids_end":{"t":"ptr","v":"0x0e9cae9c"},"kids_cap":{"t":"ptr","v":"0x0e9cae9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fdf90"},"kids_end":{"t":"ptr","v":"0x0e8fdf9c"},"kids_cap":{"t":"ptr","v":"0x0e8fdf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9caec8"},"kids_end":{"t":"ptr","v":"0x0e9caecc"},"kids_cap":{"t":"ptr","v":"0x0e9caecc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cae08"},"kids_end":{"t":"ptr","v":"0x0e9cae0c"},"kids_cap":{"t":"ptr","v":"0x0e9cae0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9caed8"},"kids_end":{"t":"ptr","v":"0x0e9caedc"},"kids_cap":{"t":"ptr","v":"0x0e9caedc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fdfd8"},"kids_end":{"t":"ptr","v":"0x0e8fdfe4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe158"},"kids_end":{"t":"ptr","v":"0x0e8fe168"},"kids_cap":{"t":"ptr","v":"0x0e8fe168"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cae18"},"kids_end":{"t":"ptr","v":"0x0e9cae1c"},"kids_cap":{"t":"ptr","v":"0x0e9cae1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cae28"},"kids_end":{"t":"ptr","v":"0x0e9cae2c"},"kids_cap":{"t":"ptr","v":"0x0e9cae2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb068"},"kids_end":{"t":"ptr","v":"0x0e9cb06c"},"kids_cap":{"t":"ptr","v":"0x0e9cb06c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb0d8"},"kids_end":{"t":"ptr","v":"0x0e9cb0dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9caf48"},"kids_end":{"t":"ptr","v":"0x0e9caf50"},"kids_cap":{"t":"ptr","v":"0x0e9caf50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe098"},"kids_end":{"t":"ptr","v":"0x0e8fe0a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb088"},"kids_end":{"t":"ptr","v":"0x0e9cb090"},"kids_cap":{"t":"ptr","v":"0x0e9cb090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fdfa8"},"kids_end":{"t":"ptr","v":"0x0e8fdfb4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe1a0"},"kids_end":{"t":"ptr","v":"0x0e8fe1ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe008"},"kids_end":{"t":"ptr","v":"0x0e8fe014"},"kids_cap":{"t":"ptr","v":"0x0e8fe014"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9caf98"},"kids_end":{"t":"ptr","v":"0x0e9caf9c"},"kids_cap":{"t":"ptr","v":"0x0e9caf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cafd8"},"kids_end":{"t":"ptr","v":"0x0e9cafdc"},"kids_cap":{"t":"ptr","v":"0x0e9cafdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe050"},"kids_end":{"t":"ptr","v":"0x0e8fe05c"},"kids_cap":{"t":"ptr","v":"0x0e8fe05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9caf58"},"kids_end":{"t":"ptr","v":"0x0e9caf5c"},"kids_cap":{"t":"ptr","v":"0x0e9caf5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9cb0e8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb0f8"},"kids_end":{"t":"ptr","v":"0x0e9cb0fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9caf68"},"kids_end":{"t":"ptr","v":"0x0e9caf6c"},"kids_cap":{"t":"ptr","v":"0x0e9caf6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cafc8"},"kids_end":{"t":"ptr","v":"0x0e9cafcc"},"kids_cap":{"t":"ptr","v":"0x0e9cafcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe1d0"},"kids_end":{"t":"ptr","v":"0x0e8fe1dc"},"kids_cap":{"t":"ptr","v":"0x0e8fe1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9caf78"},"kids_end":{"t":"ptr","v":"0x0e9caf7c"},"kids_cap":{"t":"ptr","v":"0x0e9caf7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb118"},"kids_end":{"t":"ptr","v":"0x0e9cb11c"},"kids_cap":{"t":"ptr","v":"0x0e9cb11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb108"},"kids_end":{"t":"ptr","v":"0x0e9cb10c"},"kids_cap":{"t":"ptr","v":"0x0e9cb10c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb0c8"},"kids_end":{"t":"ptr","v":"0x0e9cb0cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb098"},"kids_end":{"t":"ptr","v":"0x0e9cb09c"},"kids_cap":{"t":"ptr","v":"0x0e9cb09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb128"},"kids_end":{"t":"ptr","v":"0x0e9cb12c"},"kids_cap":{"t":"ptr","v":"0x0e9cb12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9caf88"},"kids_end":{"t":"ptr","v":"0x0e9caf8c"},"kids_cap":{"t":"ptr","v":"0x0e9caf8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe1b8"},"kids_end":{"t":"ptr","v":"0x0e8fe1c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fdfc0"},"kids_end":{"t":"ptr","v":"0x0e8fdfcc"},"kids_cap":{"t":"ptr","v":"0x0e8fdfcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb078"},"kids_end":{"t":"ptr","v":"0x0e9cb07c"},"kids_cap":{"t":"ptr","v":"0x0e9cb07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb008"},"kids_end":{"t":"ptr","v":"0x0e9cb010"},"kids_cap":{"t":"ptr","v":"0x0e9cb010"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cafa8"},"kids_end":{"t":"ptr","v":"0x0e9cafb0"},"kids_cap":{"t":"ptr","v":"0x0e9cafb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88d218"},"kids_end":{"t":"ptr","v":"0x0e88d22c"},"kids_cap":{"t":"ptr","v":"0x0e88d22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fdff0"},"kids_end":{"t":"ptr","v":"0x0e8fdffc"},"kids_cap":{"t":"ptr","v":"0x0e8fdffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969f00"},"kids_end":{"t":"ptr","v":"0x0e969f24"},"kids_cap":{"t":"ptr","v":"0x0e969f24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9cafe8"},"kids_end":{"t":"ptr","v":"0x0e9cafec"},"kids_cap":{"t":"ptr","v":"0x0e9cafec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9cafb8"},"kids_end":{"t":"ptr","v":"0x0e9cafbc"},"kids_cap":{"t":"ptr","v":"0x0e9cafbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fe110"},"kids_end":{"t":"ptr","v":"0x0e8fe11c"},"kids_cap":{"t":"ptr","v":"0x0e8fe11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb138"},"kids_end":{"t":"ptr","v":"0x0e9cb13c"},"kids_cap":{"t":"ptr","v":"0x0e9cb13c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9caff8"},"kids_end":{"t":"ptr","v":"0x0e9caffc"},"kids_cap":{"t":"ptr","v":"0x0e9caffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb018"},"kids_end":{"t":"ptr","v":"0x0e9cb01c"},"kids_cap":{"t":"ptr","v":"0x0e9cb01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb0a8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb028"},"kids_end":{"t":"ptr","v":"0x0e9cb02c"},"kids_cap":{"t":"ptr","v":"0x0e9cb02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb038"},"kids_end":{"t":"ptr","v":"0x0e9cb040"},"kids_cap":{"t":"ptr","v":"0x0e9cb040"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb048"},"kids_end":{"t":"ptr","v":"0x0e9cb050"},"kids_cap":{"t":"ptr","v":"0x0e9cb050"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d358"},"kids_end":{"t":"ptr","v":"0x0e88d36c"},"kids_cap":{"t":"ptr","v":"0x0e88d36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe218"},"kids_end":{"t":"ptr","v":"0x0e8fe224"},"kids_cap":{"t":"ptr","v":"0x0e8fe224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb058"},"kids_end":{"t":"ptr","v":"0x0e9cb05c"},"kids_cap":{"t":"ptr","v":"0x0e9cb05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb0b8"},"kids_end":{"t":"ptr","v":"0x0e9cb0bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e92edd8"},"kids_end":{"t":"ptr","v":"0x0e92eddc"},"kids_cap":{"t":"ptr","v":"0x0e92eddc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e92ed78"},"kids_end":{"t":"ptr","v":"0x0e92ed7c"},"kids_cap":{"t":"ptr","v":"0x0e92ed7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e92ede8"},"kids_end":{"t":"ptr","v":"0x0e92edf0"},"kids_cap":{"t":"ptr","v":"0x0e92edf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe020"},"kids_end":{"t":"ptr","v":"0x0e8fe02c"},"kids_cap":{"t":"ptr","v":"0x0e8fe02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e92edb8"},"kids_end":{"t":"ptr","v":"0x0e92edc0"},"kids_cap":{"t":"ptr","v":"0x0e92edc0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e92ee48"},"kids_end":{"t":"ptr","v":"0x0e92ee50"},"kids_cap":{"t":"ptr","v":"0x0e92ee50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e92eeb8"},"kids_end":{"t":"ptr","v":"0x0e92eebc"},"kids_cap":{"t":"ptr","v":"0x0e92eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe0c8"},"kids_end":{"t":"ptr","v":"0x0e8fe0d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fe0f8"},"kids_end":{"t":"ptr","v":"0x0e8fe104"},"kids_cap":{"t":"ptr","v":"0x0e8fe104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe350"},"kids_end":{"t":"ptr","v":"0x0e8fe360"},"kids_cap":{"t":"ptr","v":"0x0e8fe360"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e92eec8"},"kids_end":{"t":"ptr","v":"0x0e92eed0"},"kids_cap":{"t":"ptr","v":"0x0e92eed0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e92ee18"},"kids_end":{"t":"ptr","v":"0x0e92ee1c"},"kids_cap":{"t":"ptr","v":"0x0e92ee1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe380"},"kids_end":{"t":"ptr","v":"0x0e8fe38c"},"kids_cap":{"t":"ptr","v":"0x0e8fe38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e92ee58"},"kids_end":{"t":"ptr","v":"0x0e92ee5c"},"kids_cap":{"t":"ptr","v":"0x0e92ee5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e92edc8"},"kids_end":{"t":"ptr","v":"0x0e92edcc"},"kids_cap":{"t":"ptr","v":"0x0e92edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e92ee28"},"kids_end":{"t":"ptr","v":"0x0e92ee2c"},"kids_cap":{"t":"ptr","v":"0x0e92ee2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e92ece8"},"kids_end":{"t":"ptr","v":"0x0e92ecec"},"kids_cap":{"t":"ptr","v":"0x0e92ecec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe3e0"},"kids_end":{"t":"ptr","v":"0x0e8fe3ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e92ed38"},"kids_end":{"t":"ptr","v":"0x0e92ed3c"},"kids_cap":{"t":"ptr","v":"0x0e92ed3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e92ed58"},"kids_end":{"t":"ptr","v":"0x0e92ed60"},"kids_cap":{"t":"ptr","v":"0x0e92ed60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fe6f8"},"kids_end":{"t":"ptr","v":"0x0e8fe704"},"kids_cap":{"t":"ptr","v":"0x0e8fe704"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e92edf8"},"kids_end":{"t":"ptr","v":"0x0e92edfc"},"kids_cap":{"t":"ptr","v":"0x0e92edfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e92ee38"},"kids_end":{"t":"ptr","v":"0x0e92ee40"},"kids_cap":{"t":"ptr","v":"0x0e92ee40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e92ee08"},"kids_end":{"t":"ptr","v":"0x0e92ee0c"},"kids_cap":{"t":"ptr","v":"0x0e92ee0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e92ee68"},"kids_end":{"t":"ptr","v":"0x0e92ee70"},"kids_cap":{"t":"ptr","v":"0x0e92ee70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e92ee78"},"kids_end":{"t":"ptr","v":"0x0e92ee80"},"kids_cap":{"t":"ptr","v":"0x0e92ee80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e92ed48"},"kids_end":{"t":"ptr","v":"0x0e92ed50"},"kids_cap":{"t":"ptr","v":"0x0e92ed50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e92eed8"},"kids_end":{"t":"ptr","v":"0x0e92eee0"},"kids_cap":{"t":"ptr","v":"0x0e92eee0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e92ed88"},"kids_end":{"t":"ptr","v":"0x0e92ed8c"},"kids_cap":{"t":"ptr","v":"0x0e92ed8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e92ed68"},"kids_end":{"t":"ptr","v":"0x0e92ed6c"},"kids_cap":{"t":"ptr","v":"0x0e92ed6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e92ecf8"},"kids_end":{"t":"ptr","v":"0x0e92ed00"},"kids_cap":{"t":"ptr","v":"0x0e92ed00"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e92ed08"},"kids_end":{"t":"ptr","v":"0x0e92ed10"},"kids_cap":{"t":"ptr","v":"0x0e92ed10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e92ee98"},"kids_end":{"t":"ptr","v":"0x0e92ee9c"},"kids_cap":{"t":"ptr","v":"0x0e92ee9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e92ed18"},"kids_end":{"t":"ptr","v":"0x0e92ed1c"},"kids_cap":{"t":"ptr","v":"0x0e92ed1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e92ee88"},"kids_end":{"t":"ptr","v":"0x0e92ee90"},"kids_cap":{"t":"ptr","v":"0x0e92ee90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e92eea8"},"kids_end":{"t":"ptr","v":"0x0e92eeac"},"kids_cap":{"t":"ptr","v":"0x0e92eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e92ed28"},"kids_end":{"t":"ptr","v":"0x0e92ed2c"},"kids_cap":{"t":"ptr","v":"0x0e92ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e92ed98"},"kids_end":{"t":"ptr","v":"0x0e92eda0"},"kids_cap":{"t":"ptr","v":"0x0e92eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e92eda8"},"kids_end":{"t":"ptr","v":"0x0e92edac"},"kids_cap":{"t":"ptr","v":"0x0e92edac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e92f7a8"},"kids_end":{"t":"ptr","v":"0x0e92f7ac"},"kids_cap":{"t":"ptr","v":"0x0e92f7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fe6c8"},"kids_end":{"t":"ptr","v":"0x0e8fe6d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fe620"},"kids_end":{"t":"ptr","v":"0x0e8fe630"},"kids_cap":{"t":"ptr","v":"0x0e8fe630"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e92f6e8"},"kids_end":{"t":"ptr","v":"0x0e92f6f0"},"kids_cap":{"t":"ptr","v":"0x0e92f6f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e92f7b8"},"kids_end":{"t":"ptr","v":"0x0e92f7c0"},"kids_cap":{"t":"ptr","v":"0x0e92f7c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e92f818"},"kids_end":{"t":"ptr","v":"0x0e92f81c"},"kids_cap":{"t":"ptr","v":"0x0e92f81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e92f6f8"},"kids_end":{"t":"ptr","v":"0x0e92f700"},"kids_cap":{"t":"ptr","v":"0x0e92f700"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e92f7d8"},"kids_end":{"t":"ptr","v":"0x0e92f7e0"},"kids_cap":{"t":"ptr","v":"0x0e92f7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e92f708"},"kids_end":{"t":"ptr","v":"0x0e92f710"},"kids_cap":{"t":"ptr","v":"0x0e92f710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e92f7e8"},"kids_end":{"t":"ptr","v":"0x0e92f7ec"},"kids_cap":{"t":"ptr","v":"0x0e92f7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e92f7f8"},"kids_end":{"t":"ptr","v":"0x0e92f7fc"},"kids_cap":{"t":"ptr","v":"0x0e92f7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e92f808"},"kids_end":{"t":"ptr","v":"0x0e92f810"},"kids_cap":{"t":"ptr","v":"0x0e92f810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e92fa68"},"kids_end":{"t":"ptr","v":"0x0e92fa6c"},"kids_cap":{"t":"ptr","v":"0x0e92fa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe728"},"kids_end":{"t":"ptr","v":"0x0e8fe734"},"kids_cap":{"t":"ptr","v":"0x0e8fe734"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e92f908"},"kids_end":{"t":"ptr","v":"0x0e92f90c"},"kids_cap":{"t":"ptr","v":"0x0e92f90c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d258"},"kids_end":{"t":"ptr","v":"0x0e88d26c"},"kids_cap":{"t":"ptr","v":"0x0e88d26c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e92faa8"},"kids_end":{"t":"ptr","v":"0x0e92faac"},"kids_cap":{"t":"ptr","v":"0x0e92faac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e92f938"},"kids_end":{"t":"ptr","v":"0x0e92f93c"},"kids_cap":{"t":"ptr","v":"0x0e92f93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e92f988"},"kids_end":{"t":"ptr","v":"0x0e92f98c"},"kids_cap":{"t":"ptr","v":"0x0e92f98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e92f9f8"},"kids_end":{"t":"ptr","v":"0x0e92f9fc"},"kids_cap":{"t":"ptr","v":"0x0e92f9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9309f8"},"kids_end":{"t":"ptr","v":"0x0e9309fc"},"kids_cap":{"t":"ptr","v":"0x0e9309fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe740"},"kids_end":{"t":"ptr","v":"0x0e8fe750"},"kids_cap":{"t":"ptr","v":"0x0e8fe750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fe638"},"kids_end":{"t":"ptr","v":"0x0e8fe644"},"kids_cap":{"t":"ptr","v":"0x0e8fe644"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e930908"},"kids_end":{"t":"ptr","v":"0x0e93090c"},"kids_cap":{"t":"ptr","v":"0x0e93090c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9309a8"},"kids_end":{"t":"ptr","v":"0x0e9309ac"},"kids_cap":{"t":"ptr","v":"0x0e9309ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe7e8"},"kids_end":{"t":"ptr","v":"0x0e8fe7f8"},"kids_cap":{"t":"ptr","v":"0x0e8fe7f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9308e8"},"kids_end":{"t":"ptr","v":"0x0e9308f0"},"kids_cap":{"t":"ptr","v":"0x0e9308f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e930968"},"kids_end":{"t":"ptr","v":"0x0e93096c"},"kids_cap":{"t":"ptr","v":"0x0e93096c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e930978"},"kids_end":{"t":"ptr","v":"0x0e93097c"},"kids_cap":{"t":"ptr","v":"0x0e93097c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fe758"},"kids_end":{"t":"ptr","v":"0x0e8fe764"},"kids_cap":{"t":"ptr","v":"0x0e8fe764"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9308f8"},"kids_end":{"t":"ptr","v":"0x0e930900"},"kids_cap":{"t":"ptr","v":"0x0e930900"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d0b8"},"kids_end":{"t":"ptr","v":"0x0e88d0cc"},"kids_cap":{"t":"ptr","v":"0x0e88d0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e930918"},"kids_end":{"t":"ptr","v":"0x0e93091c"},"kids_cap":{"t":"ptr","v":"0x0e93091c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e930988"},"kids_end":{"t":"ptr","v":"0x0e93098c"},"kids_cap":{"t":"ptr","v":"0x0e93098c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9309d8"},"kids_end":{"t":"ptr","v":"0x0e9309dc"},"kids_cap":{"t":"ptr","v":"0x0e9309dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e930998"},"kids_end":{"t":"ptr","v":"0x0e93099c"},"kids_cap":{"t":"ptr","v":"0x0e93099c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9309b8"},"kids_end":{"t":"ptr","v":"0x0e9309bc"},"kids_cap":{"t":"ptr","v":"0x0e9309bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e92eb48"},"kids_end":{"t":"ptr","v":"0x0e92eb50"},"kids_cap":{"t":"ptr","v":"0x0e92eb50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d1b8"},"kids_end":{"t":"ptr","v":"0x0e88d1cc"},"kids_cap":{"t":"ptr","v":"0x0e88d1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e92ecb8"},"kids_end":{"t":"ptr","v":"0x0e92ecbc"},"kids_cap":{"t":"ptr","v":"0x0e92ecbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e92eb68"},"kids_end":{"t":"ptr","v":"0x0e92eb6c"},"kids_cap":{"t":"ptr","v":"0x0e92eb6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e92ebd8"},"kids_end":{"t":"ptr","v":"0x0e92ebdc"},"kids_cap":{"t":"ptr","v":"0x0e92ebdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e92eb18"},"kids_end":{"t":"ptr","v":"0x0e92eb20"},"kids_cap":{"t":"ptr","v":"0x0e92eb20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e92eb78"},"kids_end":{"t":"ptr","v":"0x0e92eb80"},"kids_cap":{"t":"ptr","v":"0x0e92eb80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e92ec98"},"kids_end":{"t":"ptr","v":"0x0e92eca0"},"kids_cap":{"t":"ptr","v":"0x0e92eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e92eb58"},"kids_end":{"t":"ptr","v":"0x0e92eb5c"},"kids_cap":{"t":"ptr","v":"0x0e92eb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e92eca8"},"kids_end":{"t":"ptr","v":"0x0e92ecac"},"kids_cap":{"t":"ptr","v":"0x0e92ecac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe5c0"},"kids_end":{"t":"ptr","v":"0x0e8fe5cc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe800"},"kids_end":{"t":"ptr","v":"0x0e8fe80c"},"kids_cap":{"t":"ptr","v":"0x0e8fe80c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe770"},"kids_end":{"t":"ptr","v":"0x0e8fe77c"},"kids_cap":{"t":"ptr","v":"0x0e8fe77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe7a0"},"kids_end":{"t":"ptr","v":"0x0e8fe7ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe818"},"kids_end":{"t":"ptr","v":"0x0e8fe824"},"kids_cap":{"t":"ptr","v":"0x0e8fe824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d1f8"},"kids_end":{"t":"ptr","v":"0x0e88d210"},"kids_cap":{"t":"ptr","v":"0x0e88d210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e92ec28"},"kids_end":{"t":"ptr","v":"0x0e92ec30"},"kids_cap":{"t":"ptr","v":"0x0e92ec30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e92ec68"},"kids_end":{"t":"ptr","v":"0x0e92ec70"},"kids_cap":{"t":"ptr","v":"0x0e92ec70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e92eba8"},"kids_end":{"t":"ptr","v":"0x0e92ebb0"},"kids_cap":{"t":"ptr","v":"0x0e92ebb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e92ec18"},"kids_end":{"t":"ptr","v":"0x0e92ec20"},"kids_cap":{"t":"ptr","v":"0x0e92ec20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e92eae8"},"kids_end":{"t":"ptr","v":"0x0e92eaec"},"kids_cap":{"t":"ptr","v":"0x0e92eaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e92ec58"},"kids_end":{"t":"ptr","v":"0x0e92ec5c"},"kids_cap":{"t":"ptr","v":"0x0e92ec5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e92ec08"},"kids_end":{"t":"ptr","v":"0x0e92ec0c"},"kids_cap":{"t":"ptr","v":"0x0e92ec0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e92ecc8"},"kids_end":{"t":"ptr","v":"0x0e92eccc"},"kids_cap":{"t":"ptr","v":"0x0e92eccc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e92ecd8"},"kids_end":{"t":"ptr","v":"0x0e92ecdc"},"kids_cap":{"t":"ptr","v":"0x0e92ecdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e92eb88"},"kids_end":{"t":"ptr","v":"0x0e92eb8c"},"kids_cap":{"t":"ptr","v":"0x0e92eb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e92ebb8"},"kids_end":{"t":"ptr","v":"0x0e92ebbc"},"kids_cap":{"t":"ptr","v":"0x0e92ebbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e92eaf8"},"kids_end":{"t":"ptr","v":"0x0e92eafc"},"kids_cap":{"t":"ptr","v":"0x0e92eafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e92eb98"},"kids_end":{"t":"ptr","v":"0x0e92eb9c"},"kids_cap":{"t":"ptr","v":"0x0e92eb9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e92ebe8"},"kids_end":{"t":"ptr","v":"0x0e92ebec"},"kids_cap":{"t":"ptr","v":"0x0e92ebec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e92eb08"},"kids_end":{"t":"ptr","v":"0x0e92eb0c"},"kids_cap":{"t":"ptr","v":"0x0e92eb0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["player","tree_header"],"undeclared":[],"n":0}} +{"ts":445127713,"hook":"Game::TechTree::ProcessResearch","mode":"compare","call_id":9,"thread":1412,"depth":0,"args":[{"t":"ptr","v":"0x0e93b570","n":"tree"},{"t":"ptr","v":"0x0e90bd70","n":"owner"},{"t":"i32","v":2,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e96ad78","n":"rng"},{"t":"i32","v":375,"n":"rng_left_in"},{"t":"list","v":[{"t":"struct","v":{"tech_id":{"t":"i32","v":9},"points":{"t":"i32","v":3074}}}],"n":"alloc"},{"t":"i32","v":0,"n":"overbudget_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":375},"next_index":{"t":"i64","v":249}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":375},"next_index":{"t":"i64","v":249}}}},"overbudget":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":138}}}},"node[0]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9ca6b8"},"kids_end":{"t":"ptr","v":"0x0e9ca6bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9ca6b8"},"kids_end":{"t":"ptr","v":"0x0e9ca6bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9ca668"},"kids_end":{"t":"ptr","v":"0x0e9ca66c"},"kids_cap":{"t":"ptr","v":"0x0e9ca66c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9ca668"},"kids_end":{"t":"ptr","v":"0x0e9ca66c"},"kids_cap":{"t":"ptr","v":"0x0e9ca66c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":6},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe4a0"},"kids_end":{"t":"ptr","v":"0x0e8fe4ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":3064},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe4a0"},"kids_end":{"t":"ptr","v":"0x0e8fe4ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":6000},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":6},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9ca708"},"kids_end":{"t":"ptr","v":"0x0e9ca70c"},"kids_cap":{"t":"ptr","v":"0x0e9ca70c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9ca708"},"kids_end":{"t":"ptr","v":"0x0e9ca70c"},"kids_cap":{"t":"ptr","v":"0x0e9ca70c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e9ca598"},"kids_end":{"t":"ptr","v":"0x0e9ca5a0"},"kids_cap":{"t":"ptr","v":"0x0e9ca5a0"},"unk10":{"t":"ptr","v":"0x3fc00000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x3f800000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e9ca598"},"kids_end":{"t":"ptr","v":"0x0e9ca5a0"},"kids_cap":{"t":"ptr","v":"0x0e9ca5a0"},"unk10":{"t":"ptr","v":"0x3fc00000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":6},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x3f800000"}}}},"node[13]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9ca578"},"kids_end":{"t":"ptr","v":"0x0e9ca57c"},"kids_cap":{"t":"ptr","v":"0x0e9ca57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9ca578"},"kids_end":{"t":"ptr","v":"0x0e9ca57c"},"kids_cap":{"t":"ptr","v":"0x0e9ca57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":6},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9ca5d8"},"kids_end":{"t":"ptr","v":"0x0e9ca5dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9ca5d8"},"kids_end":{"t":"ptr","v":"0x0e9ca5dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe4e8"},"kids_end":{"t":"ptr","v":"0x0e8fe4f4"},"kids_cap":{"t":"ptr","v":"0x0e8fe4f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe4e8"},"kids_end":{"t":"ptr","v":"0x0e8fe4f4"},"kids_cap":{"t":"ptr","v":"0x0e8fe4f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe3f8"},"kids_end":{"t":"ptr","v":"0x0e8fe404"},"kids_cap":{"t":"ptr","v":"0x0e8fe404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe3f8"},"kids_end":{"t":"ptr","v":"0x0e8fe404"},"kids_cap":{"t":"ptr","v":"0x0e8fe404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9ca738"},"kids_end":{"t":"ptr","v":"0x0e9ca740"},"kids_cap":{"t":"ptr","v":"0x0e9ca740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9ca738"},"kids_end":{"t":"ptr","v":"0x0e9ca740"},"kids_cap":{"t":"ptr","v":"0x0e9ca740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe410"},"kids_end":{"t":"ptr","v":"0x0e8fe41c"},"kids_cap":{"t":"ptr","v":"0x0e8fe41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe410"},"kids_end":{"t":"ptr","v":"0x0e8fe41c"},"kids_cap":{"t":"ptr","v":"0x0e8fe41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9ca698"},"kids_end":{"t":"ptr","v":"0x0e9ca69c"},"kids_cap":{"t":"ptr","v":"0x0e9ca69c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9ca698"},"kids_end":{"t":"ptr","v":"0x0e9ca69c"},"kids_cap":{"t":"ptr","v":"0x0e9ca69c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e9ca548"},"kids_end":{"t":"ptr","v":"0x0e9ca550"},"kids_cap":{"t":"ptr","v":"0x0e9ca550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e9ca548"},"kids_end":{"t":"ptr","v":"0x0e9ca550"},"kids_cap":{"t":"ptr","v":"0x0e9ca550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe428"},"kids_end":{"t":"ptr","v":"0x0e8fe434"},"kids_cap":{"t":"ptr","v":"0x0e8fe434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe428"},"kids_end":{"t":"ptr","v":"0x0e8fe434"},"kids_cap":{"t":"ptr","v":"0x0e8fe434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe530"},"kids_end":{"t":"ptr","v":"0x0e8fe53c"},"kids_cap":{"t":"ptr","v":"0x0e8fe53c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe530"},"kids_end":{"t":"ptr","v":"0x0e8fe53c"},"kids_cap":{"t":"ptr","v":"0x0e8fe53c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9ca628"},"kids_end":{"t":"ptr","v":"0x0e9ca62c"},"kids_cap":{"t":"ptr","v":"0x0e9ca62c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9ca628"},"kids_end":{"t":"ptr","v":"0x0e9ca62c"},"kids_cap":{"t":"ptr","v":"0x0e9ca62c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe440"},"kids_end":{"t":"ptr","v":"0x0e8fe44c"},"kids_cap":{"t":"ptr","v":"0x0e8fe44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe440"},"kids_end":{"t":"ptr","v":"0x0e8fe44c"},"kids_cap":{"t":"ptr","v":"0x0e8fe44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9ca608"},"kids_end":{"t":"ptr","v":"0x0e9ca60c"},"kids_cap":{"t":"ptr","v":"0x0e9ca60c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9ca608"},"kids_end":{"t":"ptr","v":"0x0e9ca60c"},"kids_cap":{"t":"ptr","v":"0x0e9ca60c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9ca5c8"},"kids_end":{"t":"ptr","v":"0x0e9ca5cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9ca5c8"},"kids_end":{"t":"ptr","v":"0x0e9ca5cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9ca6e8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9ca6e8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9ca558"},"kids_end":{"t":"ptr","v":"0x0e9ca55c"},"kids_cap":{"t":"ptr","v":"0x0e9ca55c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9ca558"},"kids_end":{"t":"ptr","v":"0x0e9ca55c"},"kids_cap":{"t":"ptr","v":"0x0e9ca55c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe458"},"kids_end":{"t":"ptr","v":"0x0e8fe464"},"kids_cap":{"t":"ptr","v":"0x0e8fe464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe458"},"kids_end":{"t":"ptr","v":"0x0e8fe464"},"kids_cap":{"t":"ptr","v":"0x0e8fe464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9ca5a8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9ca5a8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9ca5b8"},"kids_end":{"t":"ptr","v":"0x0e9ca5bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9ca5b8"},"kids_end":{"t":"ptr","v":"0x0e9ca5bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9ca6a8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9ca6a8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9ca5e8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9ca5e8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9ca5f8"},"kids_end":{"t":"ptr","v":"0x0e9ca5fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9ca5f8"},"kids_end":{"t":"ptr","v":"0x0e9ca5fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9ca568"},"kids_end":{"t":"ptr","v":"0x0e9ca56c"},"kids_cap":{"t":"ptr","v":"0x0e9ca56c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9ca568"},"kids_end":{"t":"ptr","v":"0x0e9ca56c"},"kids_cap":{"t":"ptr","v":"0x0e9ca56c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9ca588"},"kids_end":{"t":"ptr","v":"0x0e9ca58c"},"kids_cap":{"t":"ptr","v":"0x0e9ca58c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9ca588"},"kids_end":{"t":"ptr","v":"0x0e9ca58c"},"kids_cap":{"t":"ptr","v":"0x0e9ca58c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe470"},"kids_end":{"t":"ptr","v":"0x0e8fe47c"},"kids_cap":{"t":"ptr","v":"0x0e8fe47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe470"},"kids_end":{"t":"ptr","v":"0x0e8fe47c"},"kids_cap":{"t":"ptr","v":"0x0e8fe47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e9ca688"},"kids_end":{"t":"ptr","v":"0x0e9ca690"},"kids_cap":{"t":"ptr","v":"0x0e9ca690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e9ca688"},"kids_end":{"t":"ptr","v":"0x0e9ca690"},"kids_cap":{"t":"ptr","v":"0x0e9ca690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9ca618"},"kids_end":{"t":"ptr","v":"0x0e9ca61c"},"kids_cap":{"t":"ptr","v":"0x0e9ca61c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9ca618"},"kids_end":{"t":"ptr","v":"0x0e9ca61c"},"kids_cap":{"t":"ptr","v":"0x0e9ca61c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9ca728"},"kids_end":{"t":"ptr","v":"0x0e9ca730"},"kids_cap":{"t":"ptr","v":"0x0e9ca730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9ca728"},"kids_end":{"t":"ptr","v":"0x0e9ca730"},"kids_cap":{"t":"ptr","v":"0x0e9ca730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9ca638"},"kids_end":{"t":"ptr","v":"0x0e9ca63c"},"kids_cap":{"t":"ptr","v":"0x0e9ca63c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9ca638"},"kids_end":{"t":"ptr","v":"0x0e9ca63c"},"kids_cap":{"t":"ptr","v":"0x0e9ca63c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e9ca6c8"},"kids_end":{"t":"ptr","v":"0x0e9ca6cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e9ca6c8"},"kids_end":{"t":"ptr","v":"0x0e9ca6cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fe6e0"},"kids_end":{"t":"ptr","v":"0x0e8fe6ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fe6e0"},"kids_end":{"t":"ptr","v":"0x0e8fe6ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e99b508"},"kids_end":{"t":"ptr","v":"0x0e99b528"},"kids_cap":{"t":"ptr","v":"0x0e99b528"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e99b508"},"kids_end":{"t":"ptr","v":"0x0e99b528"},"kids_cap":{"t":"ptr","v":"0x0e99b528"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9ca648"},"kids_end":{"t":"ptr","v":"0x0e9ca64c"},"kids_cap":{"t":"ptr","v":"0x0e9ca64c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9ca648"},"kids_end":{"t":"ptr","v":"0x0e9ca64c"},"kids_cap":{"t":"ptr","v":"0x0e9ca64c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9ca658"},"kids_end":{"t":"ptr","v":"0x0e9ca65c"},"kids_cap":{"t":"ptr","v":"0x0e9ca65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9ca658"},"kids_end":{"t":"ptr","v":"0x0e9ca65c"},"kids_cap":{"t":"ptr","v":"0x0e9ca65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e9ca718"},"kids_end":{"t":"ptr","v":"0x0e9ca720"},"kids_cap":{"t":"ptr","v":"0x0e9ca720"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e9ca718"},"kids_end":{"t":"ptr","v":"0x0e9ca720"},"kids_cap":{"t":"ptr","v":"0x0e9ca720"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9ca678"},"kids_end":{"t":"ptr","v":"0x0e9ca67c"},"kids_cap":{"t":"ptr","v":"0x0e9ca67c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9ca678"},"kids_end":{"t":"ptr","v":"0x0e9ca67c"},"kids_cap":{"t":"ptr","v":"0x0e9ca67c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9ca6d8"},"kids_end":{"t":"ptr","v":"0x0e9ca6dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9ca6d8"},"kids_end":{"t":"ptr","v":"0x0e9ca6dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9ca6f8"},"kids_end":{"t":"ptr","v":"0x0e9ca6fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9ca6f8"},"kids_end":{"t":"ptr","v":"0x0e9ca6fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9ca878"},"kids_end":{"t":"ptr","v":"0x0e9ca87c"},"kids_cap":{"t":"ptr","v":"0x0e9ca87c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9ca878"},"kids_end":{"t":"ptr","v":"0x0e9ca87c"},"kids_cap":{"t":"ptr","v":"0x0e9ca87c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9ca768"},"kids_end":{"t":"ptr","v":"0x0e9ca770"},"kids_cap":{"t":"ptr","v":"0x0e9ca770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9ca768"},"kids_end":{"t":"ptr","v":"0x0e9ca770"},"kids_cap":{"t":"ptr","v":"0x0e9ca770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9ca858"},"kids_end":{"t":"ptr","v":"0x0e9ca85c"},"kids_cap":{"t":"ptr","v":"0x0e9ca85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9ca858"},"kids_end":{"t":"ptr","v":"0x0e9ca85c"},"kids_cap":{"t":"ptr","v":"0x0e9ca85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88ce78"},"kids_end":{"t":"ptr","v":"0x0e88ce8c"},"kids_cap":{"t":"ptr","v":"0x0e88ce8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88ce78"},"kids_end":{"t":"ptr","v":"0x0e88ce8c"},"kids_cap":{"t":"ptr","v":"0x0e88ce8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe650"},"kids_end":{"t":"ptr","v":"0x0e8fe65c"},"kids_cap":{"t":"ptr","v":"0x0e8fe65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe650"},"kids_end":{"t":"ptr","v":"0x0e8fe65c"},"kids_cap":{"t":"ptr","v":"0x0e8fe65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9ca828"},"kids_end":{"t":"ptr","v":"0x0e9ca82c"},"kids_cap":{"t":"ptr","v":"0x0e9ca82c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9ca828"},"kids_end":{"t":"ptr","v":"0x0e9ca82c"},"kids_cap":{"t":"ptr","v":"0x0e9ca82c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9ca868"},"kids_end":{"t":"ptr","v":"0x0e9ca86c"},"kids_cap":{"t":"ptr","v":"0x0e9ca86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9ca868"},"kids_end":{"t":"ptr","v":"0x0e9ca86c"},"kids_cap":{"t":"ptr","v":"0x0e9ca86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9ca8b8"},"kids_end":{"t":"ptr","v":"0x0e9ca8bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9ca8b8"},"kids_end":{"t":"ptr","v":"0x0e9ca8bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9ca788"},"kids_end":{"t":"ptr","v":"0x0e9ca78c"},"kids_cap":{"t":"ptr","v":"0x0e9ca78c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9ca788"},"kids_end":{"t":"ptr","v":"0x0e9ca78c"},"kids_cap":{"t":"ptr","v":"0x0e9ca78c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe668"},"kids_end":{"t":"ptr","v":"0x0e8fe674"},"kids_cap":{"t":"ptr","v":"0x0e8fe674"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe668"},"kids_end":{"t":"ptr","v":"0x0e8fe674"},"kids_cap":{"t":"ptr","v":"0x0e8fe674"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9ca798"},"kids_end":{"t":"ptr","v":"0x0e9ca79c"},"kids_cap":{"t":"ptr","v":"0x0e9ca79c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9ca798"},"kids_end":{"t":"ptr","v":"0x0e9ca79c"},"kids_cap":{"t":"ptr","v":"0x0e9ca79c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe710"},"kids_end":{"t":"ptr","v":"0x0e8fe71c"},"kids_cap":{"t":"ptr","v":"0x0e8fe71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe710"},"kids_end":{"t":"ptr","v":"0x0e8fe71c"},"kids_cap":{"t":"ptr","v":"0x0e8fe71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e9ca8d8"},"kids_end":{"t":"ptr","v":"0x0e9ca8e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e9ca8d8"},"kids_end":{"t":"ptr","v":"0x0e9ca8e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe680"},"kids_end":{"t":"ptr","v":"0x0e8fe690"},"kids_cap":{"t":"ptr","v":"0x0e8fe690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe680"},"kids_end":{"t":"ptr","v":"0x0e8fe690"},"kids_cap":{"t":"ptr","v":"0x0e8fe690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9ca758"},"kids_end":{"t":"ptr","v":"0x0e9ca760"},"kids_cap":{"t":"ptr","v":"0x0e9ca760"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9ca758"},"kids_end":{"t":"ptr","v":"0x0e9ca760"},"kids_cap":{"t":"ptr","v":"0x0e9ca760"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9ca928"},"kids_end":{"t":"ptr","v":"0x0e9ca92c"},"kids_cap":{"t":"ptr","v":"0x0e9ca92c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9ca928"},"kids_end":{"t":"ptr","v":"0x0e9ca92c"},"kids_cap":{"t":"ptr","v":"0x0e9ca92c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe7b8"},"kids_end":{"t":"ptr","v":"0x0e8fe7c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe7c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe7b8"},"kids_end":{"t":"ptr","v":"0x0e8fe7c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe7c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9ca778"},"kids_end":{"t":"ptr","v":"0x0e9ca77c"},"kids_cap":{"t":"ptr","v":"0x0e9ca77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9ca778"},"kids_end":{"t":"ptr","v":"0x0e9ca77c"},"kids_cap":{"t":"ptr","v":"0x0e9ca77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9ca7a8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9ca7a8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e9ca7b8"},"kids_end":{"t":"ptr","v":"0x0e9ca7bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e9ca7b8"},"kids_end":{"t":"ptr","v":"0x0e9ca7bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe698"},"kids_end":{"t":"ptr","v":"0x0e8fe6a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":7500},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":4},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":2},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe698"},"kids_end":{"t":"ptr","v":"0x0e8fe6a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":7500},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":4},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":2},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9ca7c8"},"kids_end":{"t":"ptr","v":"0x0e9ca7cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9ca7c8"},"kids_end":{"t":"ptr","v":"0x0e9ca7cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9ca918"},"kids_end":{"t":"ptr","v":"0x0e9ca91c"},"kids_cap":{"t":"ptr","v":"0x0e9ca91c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9ca918"},"kids_end":{"t":"ptr","v":"0x0e9ca91c"},"kids_cap":{"t":"ptr","v":"0x0e9ca91c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e9ca838"},"kids_end":{"t":"ptr","v":"0x0e9ca83c"},"kids_cap":{"t":"ptr","v":"0x0e9ca83c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e9ca838"},"kids_end":{"t":"ptr","v":"0x0e9ca83c"},"kids_cap":{"t":"ptr","v":"0x0e9ca83c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9ca748"},"kids_end":{"t":"ptr","v":"0x0e9ca750"},"kids_cap":{"t":"ptr","v":"0x0e9ca750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9ca748"},"kids_end":{"t":"ptr","v":"0x0e9ca750"},"kids_cap":{"t":"ptr","v":"0x0e9ca750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9ca8a8"},"kids_end":{"t":"ptr","v":"0x0e9ca8b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9ca8a8"},"kids_end":{"t":"ptr","v":"0x0e9ca8b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9ca938"},"kids_end":{"t":"ptr","v":"0x0e9ca93c"},"kids_cap":{"t":"ptr","v":"0x0e9ca93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9ca938"},"kids_end":{"t":"ptr","v":"0x0e9ca93c"},"kids_cap":{"t":"ptr","v":"0x0e9ca93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9ca848"},"kids_end":{"t":"ptr","v":"0x0e9ca84c"},"kids_cap":{"t":"ptr","v":"0x0e9ca84c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9ca848"},"kids_end":{"t":"ptr","v":"0x0e9ca84c"},"kids_cap":{"t":"ptr","v":"0x0e9ca84c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9ca888"},"kids_end":{"t":"ptr","v":"0x0e9ca88c"},"kids_cap":{"t":"ptr","v":"0x0e9ca88c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9ca888"},"kids_end":{"t":"ptr","v":"0x0e9ca88c"},"kids_cap":{"t":"ptr","v":"0x0e9ca88c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9ca8c8"},"kids_end":{"t":"ptr","v":"0x0e9ca8cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9ca8c8"},"kids_end":{"t":"ptr","v":"0x0e9ca8cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9ca898"},"kids_end":{"t":"ptr","v":"0x0e9ca89c"},"kids_cap":{"t":"ptr","v":"0x0e9ca89c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9ca898"},"kids_end":{"t":"ptr","v":"0x0e9ca89c"},"kids_cap":{"t":"ptr","v":"0x0e9ca89c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9ca8e8"},"kids_end":{"t":"ptr","v":"0x0e9ca8ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca8ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9ca8e8"},"kids_end":{"t":"ptr","v":"0x0e9ca8ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca8ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9ca7e8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9ca7e8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9ca8f8"},"kids_end":{"t":"ptr","v":"0x0e9ca8fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9ca8f8"},"kids_end":{"t":"ptr","v":"0x0e9ca8fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e9ca818"},"kids_end":{"t":"ptr","v":"0x0e9ca81c"},"kids_cap":{"t":"ptr","v":"0x0e9ca81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e9ca818"},"kids_end":{"t":"ptr","v":"0x0e9ca81c"},"kids_cap":{"t":"ptr","v":"0x0e9ca81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e9ca7d8"},"kids_end":{"t":"ptr","v":"0x0e9ca7e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e9ca7d8"},"kids_end":{"t":"ptr","v":"0x0e9ca7e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9ca908"},"kids_end":{"t":"ptr","v":"0x0e9ca910"},"kids_cap":{"t":"ptr","v":"0x0e9ca910"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9ca908"},"kids_end":{"t":"ptr","v":"0x0e9ca910"},"kids_cap":{"t":"ptr","v":"0x0e9ca910"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9ca7f8"},"kids_end":{"t":"ptr","v":"0x0e9ca7fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9ca7f8"},"kids_end":{"t":"ptr","v":"0x0e9ca7fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9ca808"},"kids_end":{"t":"ptr","v":"0x0e9ca810"},"kids_cap":{"t":"ptr","v":"0x0e9ca810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9ca808"},"kids_end":{"t":"ptr","v":"0x0e9ca810"},"kids_cap":{"t":"ptr","v":"0x0e9ca810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9ca9a8"},"kids_end":{"t":"ptr","v":"0x0e9ca9b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9ca9a8"},"kids_end":{"t":"ptr","v":"0x0e9ca9b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9ca9b8"},"kids_end":{"t":"ptr","v":"0x0e9ca9bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9ca9b8"},"kids_end":{"t":"ptr","v":"0x0e9ca9bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe788"},"kids_end":{"t":"ptr","v":"0x0e8fe794"},"kids_cap":{"t":"ptr","v":"0x0e8fe794"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe788"},"kids_end":{"t":"ptr","v":"0x0e8fe794"},"kids_cap":{"t":"ptr","v":"0x0e8fe794"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9caae8"},"kids_end":{"t":"ptr","v":"0x0e9caaec"},"kids_cap":{"t":"ptr","v":"0x0e9caaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9caae8"},"kids_end":{"t":"ptr","v":"0x0e9caaec"},"kids_cap":{"t":"ptr","v":"0x0e9caaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e9caaa8"},"kids_end":{"t":"ptr","v":"0x0e9caab0"},"kids_cap":{"t":"ptr","v":"0x0e9caab0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e9caaa8"},"kids_end":{"t":"ptr","v":"0x0e9caab0"},"kids_cap":{"t":"ptr","v":"0x0e9caab0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9caa38"},"kids_end":{"t":"ptr","v":"0x0e9caa3c"},"kids_cap":{"t":"ptr","v":"0x0e9caa3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9caa38"},"kids_end":{"t":"ptr","v":"0x0e9caa3c"},"kids_cap":{"t":"ptr","v":"0x0e9caa3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9caac8"},"kids_end":{"t":"ptr","v":"0x0e9caacc"},"kids_cap":{"t":"ptr","v":"0x0e9caacc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9caac8"},"kids_end":{"t":"ptr","v":"0x0e9caacc"},"kids_cap":{"t":"ptr","v":"0x0e9caacc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe860"},"kids_end":{"t":"ptr","v":"0x0e8fe870"},"kids_cap":{"t":"ptr","v":"0x0e8fe870"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe860"},"kids_end":{"t":"ptr","v":"0x0e8fe870"},"kids_cap":{"t":"ptr","v":"0x0e8fe870"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e9caa98"},"kids_end":{"t":"ptr","v":"0x0e9caaa0"},"kids_cap":{"t":"ptr","v":"0x0e9caaa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e9caa98"},"kids_end":{"t":"ptr","v":"0x0e9caaa0"},"kids_cap":{"t":"ptr","v":"0x0e9caaa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9ca988"},"kids_end":{"t":"ptr","v":"0x0e9ca98c"},"kids_cap":{"t":"ptr","v":"0x0e9ca98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9ca988"},"kids_end":{"t":"ptr","v":"0x0e9ca98c"},"kids_cap":{"t":"ptr","v":"0x0e9ca98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe878"},"kids_end":{"t":"ptr","v":"0x0e8fe888"},"kids_cap":{"t":"ptr","v":"0x0e8fe888"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe878"},"kids_end":{"t":"ptr","v":"0x0e8fe888"},"kids_cap":{"t":"ptr","v":"0x0e8fe888"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9cab28"},"kids_end":{"t":"ptr","v":"0x0e9cab30"},"kids_cap":{"t":"ptr","v":"0x0e9cab30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9cab28"},"kids_end":{"t":"ptr","v":"0x0e9cab30"},"kids_cap":{"t":"ptr","v":"0x0e9cab30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9caaf8"},"kids_end":{"t":"ptr","v":"0x0e9caafc"},"kids_cap":{"t":"ptr","v":"0x0e9caafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9caaf8"},"kids_end":{"t":"ptr","v":"0x0e9caafc"},"kids_cap":{"t":"ptr","v":"0x0e9caafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e9cab38"},"kids_end":{"t":"ptr","v":"0x0e9cab3c"},"kids_cap":{"t":"ptr","v":"0x0e9cab3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e9cab38"},"kids_end":{"t":"ptr","v":"0x0e9cab3c"},"kids_cap":{"t":"ptr","v":"0x0e9cab3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e9cab08"},"kids_end":{"t":"ptr","v":"0x0e9cab10"},"kids_cap":{"t":"ptr","v":"0x0e9cab10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e9cab08"},"kids_end":{"t":"ptr","v":"0x0e9cab10"},"kids_cap":{"t":"ptr","v":"0x0e9cab10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9caa08"},"kids_end":{"t":"ptr","v":"0x0e9caa0c"},"kids_cap":{"t":"ptr","v":"0x0e9caa0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9caa08"},"kids_end":{"t":"ptr","v":"0x0e9caa0c"},"kids_cap":{"t":"ptr","v":"0x0e9caa0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9ca9c8"},"kids_end":{"t":"ptr","v":"0x0e9ca9d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9ca9c8"},"kids_end":{"t":"ptr","v":"0x0e9ca9d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e8fe7d0"},"kids_end":{"t":"ptr","v":"0x0e8fe7e0"},"kids_cap":{"t":"ptr","v":"0x0e8fe7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e8fe7d0"},"kids_end":{"t":"ptr","v":"0x0e8fe7e0"},"kids_cap":{"t":"ptr","v":"0x0e8fe7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9ca9d8"},"kids_end":{"t":"ptr","v":"0x0e9ca9dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9ca9d8"},"kids_end":{"t":"ptr","v":"0x0e9ca9dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9caa58"},"kids_end":{"t":"ptr","v":"0x0e9caa5c"},"kids_cap":{"t":"ptr","v":"0x0e9caa5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9caa58"},"kids_end":{"t":"ptr","v":"0x0e9caa5c"},"kids_cap":{"t":"ptr","v":"0x0e9caa5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9caa48"},"kids_end":{"t":"ptr","v":"0x0e9caa50"},"kids_cap":{"t":"ptr","v":"0x0e9caa50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9caa48"},"kids_end":{"t":"ptr","v":"0x0e9caa50"},"kids_cap":{"t":"ptr","v":"0x0e9caa50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9caa68"},"kids_end":{"t":"ptr","v":"0x0e9caa6c"},"kids_cap":{"t":"ptr","v":"0x0e9caa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9caa68"},"kids_end":{"t":"ptr","v":"0x0e9caa6c"},"kids_cap":{"t":"ptr","v":"0x0e9caa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9ca9e8"},"kids_end":{"t":"ptr","v":"0x0e9ca9ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca9ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9ca9e8"},"kids_end":{"t":"ptr","v":"0x0e9ca9ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca9ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe590"},"kids_end":{"t":"ptr","v":"0x0e8fe59c"},"kids_cap":{"t":"ptr","v":"0x0e8fe59c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe590"},"kids_end":{"t":"ptr","v":"0x0e8fe59c"},"kids_cap":{"t":"ptr","v":"0x0e8fe59c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe5f0"},"kids_end":{"t":"ptr","v":"0x0e8fe5fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe5f0"},"kids_end":{"t":"ptr","v":"0x0e8fe5fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe6b0"},"kids_end":{"t":"ptr","v":"0x0e8fe6bc"},"kids_cap":{"t":"ptr","v":"0x0e8fe6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe6b0"},"kids_end":{"t":"ptr","v":"0x0e8fe6bc"},"kids_cap":{"t":"ptr","v":"0x0e8fe6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe608"},"kids_end":{"t":"ptr","v":"0x0e8fe614"},"kids_cap":{"t":"ptr","v":"0x0e8fe614"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe608"},"kids_end":{"t":"ptr","v":"0x0e8fe614"},"kids_cap":{"t":"ptr","v":"0x0e8fe614"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe5a8"},"kids_end":{"t":"ptr","v":"0x0e8fe5b4"},"kids_cap":{"t":"ptr","v":"0x0e8fe5b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe5a8"},"kids_end":{"t":"ptr","v":"0x0e8fe5b4"},"kids_cap":{"t":"ptr","v":"0x0e8fe5b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88cdd8"},"kids_end":{"t":"ptr","v":"0x0e88cdf0"},"kids_cap":{"t":"ptr","v":"0x0e88cdf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88cdd8"},"kids_end":{"t":"ptr","v":"0x0e88cdf0"},"kids_cap":{"t":"ptr","v":"0x0e88cdf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e9caab8"},"kids_end":{"t":"ptr","v":"0x0e9caac0"},"kids_cap":{"t":"ptr","v":"0x0e9caac0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e9caab8"},"kids_end":{"t":"ptr","v":"0x0e9caac0"},"kids_cap":{"t":"ptr","v":"0x0e9caac0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9cab18"},"kids_end":{"t":"ptr","v":"0x0e9cab20"},"kids_cap":{"t":"ptr","v":"0x0e9cab20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9cab18"},"kids_end":{"t":"ptr","v":"0x0e9cab20"},"kids_cap":{"t":"ptr","v":"0x0e9cab20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9caad8"},"kids_end":{"t":"ptr","v":"0x0e9caae0"},"kids_cap":{"t":"ptr","v":"0x0e9caae0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9caad8"},"kids_end":{"t":"ptr","v":"0x0e9caae0"},"kids_cap":{"t":"ptr","v":"0x0e9caae0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9ca958"},"kids_end":{"t":"ptr","v":"0x0e9ca960"},"kids_cap":{"t":"ptr","v":"0x0e9ca960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9ca958"},"kids_end":{"t":"ptr","v":"0x0e9ca960"},"kids_cap":{"t":"ptr","v":"0x0e9ca960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9caa78"},"kids_end":{"t":"ptr","v":"0x0e9caa7c"},"kids_cap":{"t":"ptr","v":"0x0e9caa7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9caa78"},"kids_end":{"t":"ptr","v":"0x0e9caa7c"},"kids_cap":{"t":"ptr","v":"0x0e9caa7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9caa88"},"kids_end":{"t":"ptr","v":"0x0e9caa8c"},"kids_cap":{"t":"ptr","v":"0x0e9caa8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9caa88"},"kids_end":{"t":"ptr","v":"0x0e9caa8c"},"kids_cap":{"t":"ptr","v":"0x0e9caa8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca998"},"kids_end":{"t":"ptr","v":"0x0e9ca99c"},"kids_cap":{"t":"ptr","v":"0x0e9ca99c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca998"},"kids_end":{"t":"ptr","v":"0x0e9ca99c"},"kids_cap":{"t":"ptr","v":"0x0e9ca99c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9ca948"},"kids_end":{"t":"ptr","v":"0x0e9ca94c"},"kids_cap":{"t":"ptr","v":"0x0e9ca94c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9ca948"},"kids_end":{"t":"ptr","v":"0x0e9ca94c"},"kids_cap":{"t":"ptr","v":"0x0e9ca94c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca968"},"kids_end":{"t":"ptr","v":"0x0e9ca96c"},"kids_cap":{"t":"ptr","v":"0x0e9ca96c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca968"},"kids_end":{"t":"ptr","v":"0x0e9ca96c"},"kids_cap":{"t":"ptr","v":"0x0e9ca96c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca9f8"},"kids_end":{"t":"ptr","v":"0x0e9ca9fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca9f8"},"kids_end":{"t":"ptr","v":"0x0e9ca9fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca978"},"kids_end":{"t":"ptr","v":"0x0e9ca97c"},"kids_cap":{"t":"ptr","v":"0x0e9ca97c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca978"},"kids_end":{"t":"ptr","v":"0x0e9ca97c"},"kids_cap":{"t":"ptr","v":"0x0e9ca97c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9caa18"},"kids_end":{"t":"ptr","v":"0x0e9caa1c"},"kids_cap":{"t":"ptr","v":"0x0e9caa1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9caa18"},"kids_end":{"t":"ptr","v":"0x0e9caa1c"},"kids_cap":{"t":"ptr","v":"0x0e9caa1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9caa28"},"kids_end":{"t":"ptr","v":"0x0e9caa2c"},"kids_cap":{"t":"ptr","v":"0x0e9caa2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9caa28"},"kids_end":{"t":"ptr","v":"0x0e9caa2c"},"kids_cap":{"t":"ptr","v":"0x0e9caa2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9cacd8"},"kids_end":{"t":"ptr","v":"0x0e9cacdc"},"kids_cap":{"t":"ptr","v":"0x0e9cacdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9cacd8"},"kids_end":{"t":"ptr","v":"0x0e9cacdc"},"kids_cap":{"t":"ptr","v":"0x0e9cacdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9caca8"},"kids_end":{"t":"ptr","v":"0x0e9cacac"},"kids_cap":{"t":"ptr","v":"0x0e9cacac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9caca8"},"kids_end":{"t":"ptr","v":"0x0e9cacac"},"kids_cap":{"t":"ptr","v":"0x0e9cacac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"before":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":120},"next_id":{"t":"i32","v":10},"vec_begin":{"t":"ptr","v":"0x366cba50"},"vec_end":{"t":"ptr","v":"0x366cbac8"},"vec_cap":{"t":"ptr","v":"0x366cbae0"}}},"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":120},"next_id":{"t":"i32","v":12},"vec_begin":{"t":"ptr","v":"0x366cba50"},"vec_end":{"t":"ptr","v":"0x366cbac8"},"vec_cap":{"t":"ptr","v":"0x366cbae0"}}}}},"ours":{"ret":null,"side":{"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":375},"next_index":{"t":"i64","v":249}}}},"overbudget":{"after":{"t":"struct","v":{"v":{"t":"i32","v":138}}}},"node[0]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9ca6b8"},"kids_end":{"t":"ptr","v":"0x0e9ca6bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9ca668"},"kids_end":{"t":"ptr","v":"0x0e9ca66c"},"kids_cap":{"t":"ptr","v":"0x0e9ca66c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe4a0"},"kids_end":{"t":"ptr","v":"0x0e8fe4ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":6000},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9ca708"},"kids_end":{"t":"ptr","v":"0x0e9ca70c"},"kids_cap":{"t":"ptr","v":"0x0e9ca70c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e9ca598"},"kids_end":{"t":"ptr","v":"0x0e9ca5a0"},"kids_cap":{"t":"ptr","v":"0x0e9ca5a0"},"unk10":{"t":"ptr","v":"0x3fc00000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x3f800000"}}}},"node[13]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9ca578"},"kids_end":{"t":"ptr","v":"0x0e9ca57c"},"kids_cap":{"t":"ptr","v":"0x0e9ca57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9ca5d8"},"kids_end":{"t":"ptr","v":"0x0e9ca5dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe4e8"},"kids_end":{"t":"ptr","v":"0x0e8fe4f4"},"kids_cap":{"t":"ptr","v":"0x0e8fe4f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe3f8"},"kids_end":{"t":"ptr","v":"0x0e8fe404"},"kids_cap":{"t":"ptr","v":"0x0e8fe404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9ca738"},"kids_end":{"t":"ptr","v":"0x0e9ca740"},"kids_cap":{"t":"ptr","v":"0x0e9ca740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe410"},"kids_end":{"t":"ptr","v":"0x0e8fe41c"},"kids_cap":{"t":"ptr","v":"0x0e8fe41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9ca698"},"kids_end":{"t":"ptr","v":"0x0e9ca69c"},"kids_cap":{"t":"ptr","v":"0x0e9ca69c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e9ca548"},"kids_end":{"t":"ptr","v":"0x0e9ca550"},"kids_cap":{"t":"ptr","v":"0x0e9ca550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe428"},"kids_end":{"t":"ptr","v":"0x0e8fe434"},"kids_cap":{"t":"ptr","v":"0x0e8fe434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe530"},"kids_end":{"t":"ptr","v":"0x0e8fe53c"},"kids_cap":{"t":"ptr","v":"0x0e8fe53c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9ca628"},"kids_end":{"t":"ptr","v":"0x0e9ca62c"},"kids_cap":{"t":"ptr","v":"0x0e9ca62c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe440"},"kids_end":{"t":"ptr","v":"0x0e8fe44c"},"kids_cap":{"t":"ptr","v":"0x0e8fe44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9ca608"},"kids_end":{"t":"ptr","v":"0x0e9ca60c"},"kids_cap":{"t":"ptr","v":"0x0e9ca60c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9ca5c8"},"kids_end":{"t":"ptr","v":"0x0e9ca5cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9ca6e8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9ca558"},"kids_end":{"t":"ptr","v":"0x0e9ca55c"},"kids_cap":{"t":"ptr","v":"0x0e9ca55c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe458"},"kids_end":{"t":"ptr","v":"0x0e8fe464"},"kids_cap":{"t":"ptr","v":"0x0e8fe464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9ca5a8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9ca5b8"},"kids_end":{"t":"ptr","v":"0x0e9ca5bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9ca6a8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9ca5e8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9ca5f8"},"kids_end":{"t":"ptr","v":"0x0e9ca5fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9ca568"},"kids_end":{"t":"ptr","v":"0x0e9ca56c"},"kids_cap":{"t":"ptr","v":"0x0e9ca56c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9ca588"},"kids_end":{"t":"ptr","v":"0x0e9ca58c"},"kids_cap":{"t":"ptr","v":"0x0e9ca58c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe470"},"kids_end":{"t":"ptr","v":"0x0e8fe47c"},"kids_cap":{"t":"ptr","v":"0x0e8fe47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e9ca688"},"kids_end":{"t":"ptr","v":"0x0e9ca690"},"kids_cap":{"t":"ptr","v":"0x0e9ca690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9ca618"},"kids_end":{"t":"ptr","v":"0x0e9ca61c"},"kids_cap":{"t":"ptr","v":"0x0e9ca61c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9ca728"},"kids_end":{"t":"ptr","v":"0x0e9ca730"},"kids_cap":{"t":"ptr","v":"0x0e9ca730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9ca638"},"kids_end":{"t":"ptr","v":"0x0e9ca63c"},"kids_cap":{"t":"ptr","v":"0x0e9ca63c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e9ca6c8"},"kids_end":{"t":"ptr","v":"0x0e9ca6cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fe6e0"},"kids_end":{"t":"ptr","v":"0x0e8fe6ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e99b508"},"kids_end":{"t":"ptr","v":"0x0e99b528"},"kids_cap":{"t":"ptr","v":"0x0e99b528"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9ca648"},"kids_end":{"t":"ptr","v":"0x0e9ca64c"},"kids_cap":{"t":"ptr","v":"0x0e9ca64c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9ca658"},"kids_end":{"t":"ptr","v":"0x0e9ca65c"},"kids_cap":{"t":"ptr","v":"0x0e9ca65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e9ca718"},"kids_end":{"t":"ptr","v":"0x0e9ca720"},"kids_cap":{"t":"ptr","v":"0x0e9ca720"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9ca678"},"kids_end":{"t":"ptr","v":"0x0e9ca67c"},"kids_cap":{"t":"ptr","v":"0x0e9ca67c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9ca6d8"},"kids_end":{"t":"ptr","v":"0x0e9ca6dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9ca6f8"},"kids_end":{"t":"ptr","v":"0x0e9ca6fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9ca878"},"kids_end":{"t":"ptr","v":"0x0e9ca87c"},"kids_cap":{"t":"ptr","v":"0x0e9ca87c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9ca768"},"kids_end":{"t":"ptr","v":"0x0e9ca770"},"kids_cap":{"t":"ptr","v":"0x0e9ca770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9ca858"},"kids_end":{"t":"ptr","v":"0x0e9ca85c"},"kids_cap":{"t":"ptr","v":"0x0e9ca85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88ce78"},"kids_end":{"t":"ptr","v":"0x0e88ce8c"},"kids_cap":{"t":"ptr","v":"0x0e88ce8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe650"},"kids_end":{"t":"ptr","v":"0x0e8fe65c"},"kids_cap":{"t":"ptr","v":"0x0e8fe65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9ca828"},"kids_end":{"t":"ptr","v":"0x0e9ca82c"},"kids_cap":{"t":"ptr","v":"0x0e9ca82c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9ca868"},"kids_end":{"t":"ptr","v":"0x0e9ca86c"},"kids_cap":{"t":"ptr","v":"0x0e9ca86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9ca8b8"},"kids_end":{"t":"ptr","v":"0x0e9ca8bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9ca788"},"kids_end":{"t":"ptr","v":"0x0e9ca78c"},"kids_cap":{"t":"ptr","v":"0x0e9ca78c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe668"},"kids_end":{"t":"ptr","v":"0x0e8fe674"},"kids_cap":{"t":"ptr","v":"0x0e8fe674"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9ca798"},"kids_end":{"t":"ptr","v":"0x0e9ca79c"},"kids_cap":{"t":"ptr","v":"0x0e9ca79c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe710"},"kids_end":{"t":"ptr","v":"0x0e8fe71c"},"kids_cap":{"t":"ptr","v":"0x0e8fe71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e9ca8d8"},"kids_end":{"t":"ptr","v":"0x0e9ca8e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe680"},"kids_end":{"t":"ptr","v":"0x0e8fe690"},"kids_cap":{"t":"ptr","v":"0x0e8fe690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9ca758"},"kids_end":{"t":"ptr","v":"0x0e9ca760"},"kids_cap":{"t":"ptr","v":"0x0e9ca760"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9ca928"},"kids_end":{"t":"ptr","v":"0x0e9ca92c"},"kids_cap":{"t":"ptr","v":"0x0e9ca92c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe7b8"},"kids_end":{"t":"ptr","v":"0x0e8fe7c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe7c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9ca778"},"kids_end":{"t":"ptr","v":"0x0e9ca77c"},"kids_cap":{"t":"ptr","v":"0x0e9ca77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9ca7a8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e9ca7b8"},"kids_end":{"t":"ptr","v":"0x0e9ca7bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe698"},"kids_end":{"t":"ptr","v":"0x0e8fe6a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":7500},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":4},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":2},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9ca7c8"},"kids_end":{"t":"ptr","v":"0x0e9ca7cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9ca918"},"kids_end":{"t":"ptr","v":"0x0e9ca91c"},"kids_cap":{"t":"ptr","v":"0x0e9ca91c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e9ca838"},"kids_end":{"t":"ptr","v":"0x0e9ca83c"},"kids_cap":{"t":"ptr","v":"0x0e9ca83c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9ca748"},"kids_end":{"t":"ptr","v":"0x0e9ca750"},"kids_cap":{"t":"ptr","v":"0x0e9ca750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9ca8a8"},"kids_end":{"t":"ptr","v":"0x0e9ca8b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9ca938"},"kids_end":{"t":"ptr","v":"0x0e9ca93c"},"kids_cap":{"t":"ptr","v":"0x0e9ca93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9ca848"},"kids_end":{"t":"ptr","v":"0x0e9ca84c"},"kids_cap":{"t":"ptr","v":"0x0e9ca84c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9ca888"},"kids_end":{"t":"ptr","v":"0x0e9ca88c"},"kids_cap":{"t":"ptr","v":"0x0e9ca88c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9ca8c8"},"kids_end":{"t":"ptr","v":"0x0e9ca8cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9ca898"},"kids_end":{"t":"ptr","v":"0x0e9ca89c"},"kids_cap":{"t":"ptr","v":"0x0e9ca89c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9ca8e8"},"kids_end":{"t":"ptr","v":"0x0e9ca8ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca8ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9ca7e8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9ca8f8"},"kids_end":{"t":"ptr","v":"0x0e9ca8fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e9ca818"},"kids_end":{"t":"ptr","v":"0x0e9ca81c"},"kids_cap":{"t":"ptr","v":"0x0e9ca81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e9ca7d8"},"kids_end":{"t":"ptr","v":"0x0e9ca7e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9ca908"},"kids_end":{"t":"ptr","v":"0x0e9ca910"},"kids_cap":{"t":"ptr","v":"0x0e9ca910"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9ca7f8"},"kids_end":{"t":"ptr","v":"0x0e9ca7fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9ca808"},"kids_end":{"t":"ptr","v":"0x0e9ca810"},"kids_cap":{"t":"ptr","v":"0x0e9ca810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9ca9a8"},"kids_end":{"t":"ptr","v":"0x0e9ca9b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9ca9b8"},"kids_end":{"t":"ptr","v":"0x0e9ca9bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe788"},"kids_end":{"t":"ptr","v":"0x0e8fe794"},"kids_cap":{"t":"ptr","v":"0x0e8fe794"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9caae8"},"kids_end":{"t":"ptr","v":"0x0e9caaec"},"kids_cap":{"t":"ptr","v":"0x0e9caaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e9caaa8"},"kids_end":{"t":"ptr","v":"0x0e9caab0"},"kids_cap":{"t":"ptr","v":"0x0e9caab0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9caa38"},"kids_end":{"t":"ptr","v":"0x0e9caa3c"},"kids_cap":{"t":"ptr","v":"0x0e9caa3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9caac8"},"kids_end":{"t":"ptr","v":"0x0e9caacc"},"kids_cap":{"t":"ptr","v":"0x0e9caacc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe860"},"kids_end":{"t":"ptr","v":"0x0e8fe870"},"kids_cap":{"t":"ptr","v":"0x0e8fe870"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e9caa98"},"kids_end":{"t":"ptr","v":"0x0e9caaa0"},"kids_cap":{"t":"ptr","v":"0x0e9caaa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9ca988"},"kids_end":{"t":"ptr","v":"0x0e9ca98c"},"kids_cap":{"t":"ptr","v":"0x0e9ca98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe878"},"kids_end":{"t":"ptr","v":"0x0e8fe888"},"kids_cap":{"t":"ptr","v":"0x0e8fe888"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9cab28"},"kids_end":{"t":"ptr","v":"0x0e9cab30"},"kids_cap":{"t":"ptr","v":"0x0e9cab30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9caaf8"},"kids_end":{"t":"ptr","v":"0x0e9caafc"},"kids_cap":{"t":"ptr","v":"0x0e9caafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e9cab38"},"kids_end":{"t":"ptr","v":"0x0e9cab3c"},"kids_cap":{"t":"ptr","v":"0x0e9cab3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e9cab08"},"kids_end":{"t":"ptr","v":"0x0e9cab10"},"kids_cap":{"t":"ptr","v":"0x0e9cab10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9caa08"},"kids_end":{"t":"ptr","v":"0x0e9caa0c"},"kids_cap":{"t":"ptr","v":"0x0e9caa0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9ca9c8"},"kids_end":{"t":"ptr","v":"0x0e9ca9d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e8fe7d0"},"kids_end":{"t":"ptr","v":"0x0e8fe7e0"},"kids_cap":{"t":"ptr","v":"0x0e8fe7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9ca9d8"},"kids_end":{"t":"ptr","v":"0x0e9ca9dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9caa58"},"kids_end":{"t":"ptr","v":"0x0e9caa5c"},"kids_cap":{"t":"ptr","v":"0x0e9caa5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9caa48"},"kids_end":{"t":"ptr","v":"0x0e9caa50"},"kids_cap":{"t":"ptr","v":"0x0e9caa50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9caa68"},"kids_end":{"t":"ptr","v":"0x0e9caa6c"},"kids_cap":{"t":"ptr","v":"0x0e9caa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9ca9e8"},"kids_end":{"t":"ptr","v":"0x0e9ca9ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca9ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe590"},"kids_end":{"t":"ptr","v":"0x0e8fe59c"},"kids_cap":{"t":"ptr","v":"0x0e8fe59c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe5f0"},"kids_end":{"t":"ptr","v":"0x0e8fe5fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe6b0"},"kids_end":{"t":"ptr","v":"0x0e8fe6bc"},"kids_cap":{"t":"ptr","v":"0x0e8fe6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe608"},"kids_end":{"t":"ptr","v":"0x0e8fe614"},"kids_cap":{"t":"ptr","v":"0x0e8fe614"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe5a8"},"kids_end":{"t":"ptr","v":"0x0e8fe5b4"},"kids_cap":{"t":"ptr","v":"0x0e8fe5b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88cdd8"},"kids_end":{"t":"ptr","v":"0x0e88cdf0"},"kids_cap":{"t":"ptr","v":"0x0e88cdf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e9caab8"},"kids_end":{"t":"ptr","v":"0x0e9caac0"},"kids_cap":{"t":"ptr","v":"0x0e9caac0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9cab18"},"kids_end":{"t":"ptr","v":"0x0e9cab20"},"kids_cap":{"t":"ptr","v":"0x0e9cab20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9caad8"},"kids_end":{"t":"ptr","v":"0x0e9caae0"},"kids_cap":{"t":"ptr","v":"0x0e9caae0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9ca958"},"kids_end":{"t":"ptr","v":"0x0e9ca960"},"kids_cap":{"t":"ptr","v":"0x0e9ca960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9caa78"},"kids_end":{"t":"ptr","v":"0x0e9caa7c"},"kids_cap":{"t":"ptr","v":"0x0e9caa7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9caa88"},"kids_end":{"t":"ptr","v":"0x0e9caa8c"},"kids_cap":{"t":"ptr","v":"0x0e9caa8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca998"},"kids_end":{"t":"ptr","v":"0x0e9ca99c"},"kids_cap":{"t":"ptr","v":"0x0e9ca99c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9ca948"},"kids_end":{"t":"ptr","v":"0x0e9ca94c"},"kids_cap":{"t":"ptr","v":"0x0e9ca94c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca968"},"kids_end":{"t":"ptr","v":"0x0e9ca96c"},"kids_cap":{"t":"ptr","v":"0x0e9ca96c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca9f8"},"kids_end":{"t":"ptr","v":"0x0e9ca9fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca978"},"kids_end":{"t":"ptr","v":"0x0e9ca97c"},"kids_cap":{"t":"ptr","v":"0x0e9ca97c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9caa18"},"kids_end":{"t":"ptr","v":"0x0e9caa1c"},"kids_cap":{"t":"ptr","v":"0x0e9caa1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9caa28"},"kids_end":{"t":"ptr","v":"0x0e9caa2c"},"kids_cap":{"t":"ptr","v":"0x0e9caa2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9cacd8"},"kids_end":{"t":"ptr","v":"0x0e9cacdc"},"kids_cap":{"t":"ptr","v":"0x0e9cacdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9caca8"},"kids_end":{"t":"ptr","v":"0x0e9cacac"},"kids_cap":{"t":"ptr","v":"0x0e9cacac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":120},"next_id":{"t":"i32","v":10},"vec_begin":{"t":"ptr","v":"0x366cba50"},"vec_end":{"t":"ptr","v":"0x366cbac8"},"vec_cap":{"t":"ptr","v":"0x366cbae0"}}}}}},"diverged":true,"diff":[{"path":"side.events.after.v.next_id","why":"exact","orig":{"t":"i32","v":12},"ours":{"t":"i32","v":10}},{"path":"side.node[12].after.v.cost_rp","why":"exact","orig":{"t":"i32","v":35000},"ours":{"t":"i32","v":2147483647}},{"path":"side.node[12].after.v.state","why":"exact","orig":{"t":"i32","v":2},"ours":{"t":"i32","v":0}},{"path":"side.node[12].after.v.turn_available","why":"exact","orig":{"t":"i32","v":6},"ours":{"t":"i32","v":-1}},{"path":"side.node[18].after.v.cost_rp","why":"exact","orig":{"t":"i32","v":4000},"ours":{"t":"i32","v":2147483647}},{"path":"side.node[18].after.v.state","why":"exact","orig":{"t":"i32","v":2},"ours":{"t":"i32","v":0}},{"path":"side.node[18].after.v.turn_available","why":"exact","orig":{"t":"i32","v":6},"ours":{"t":"i32","v":-1}},{"path":"side.node[3].after.v.cost_rp","why":"exact","orig":{"t":"i32","v":13000},"ours":{"t":"i32","v":2147483647}},{"path":"side.node[3].after.v.state","why":"exact","orig":{"t":"i32","v":2},"ours":{"t":"i32","v":0}},{"path":"side.node[3].after.v.turn_available","why":"exact","orig":{"t":"i32","v":6},"ours":{"t":"i32","v":-1}},{"path":"side.node[9].after.v.order","why":"exact","orig":{"t":"i32","v":23},"ours":{"t":"i32","v":-1}},{"path":"side.node[9].after.v.turn_researched","why":"exact","orig":{"t":"i32","v":6},"ours":{"t":"i32","v":-1}}],"coverage":{"guards":["player","tree_header"],"undeclared":[{"region":"player","off":304,"len":3},{"region":"player","off":632,"len":1},{"region":"player","off":660,"len":4},{"region":"tree_header","off":32,"len":1}],"n":4}} +{"ts":445152119,"hook":"Game::TechTree::ProcessResearch","mode":"compare","call_id":10,"thread":1412,"depth":0,"args":[{"t":"ptr","v":"0x0e93b6c0","n":"tree"},{"t":"ptr","v":"0x0e906b68","n":"owner"},{"t":"i32","v":0,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e96ad78","n":"rng"},{"t":"i32","v":375,"n":"rng_left_in"},{"t":"list","v":[{"t":"struct","v":{"tech_id":{"t":"i32","v":90},"points":{"t":"i32","v":0}}}],"n":"alloc"},{"t":"i32","v":0,"n":"overbudget_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":375},"next_index":{"t":"i64","v":249}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":375},"next_index":{"t":"i64","v":249}}}},"overbudget":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9cb2e8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9cb2e8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cb1a8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cb1a8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cb158"},"kids_end":{"t":"ptr","v":"0x0e9cb15c"},"kids_cap":{"t":"ptr","v":"0x0e9cb15c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cb158"},"kids_end":{"t":"ptr","v":"0x0e9cb15c"},"kids_cap":{"t":"ptr","v":"0x0e9cb15c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9cb168"},"kids_end":{"t":"ptr","v":"0x0e9cb170"},"kids_cap":{"t":"ptr","v":"0x0e9cb170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9cb168"},"kids_end":{"t":"ptr","v":"0x0e9cb170"},"kids_cap":{"t":"ptr","v":"0x0e9cb170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9cb178"},"kids_end":{"t":"ptr","v":"0x0e9cb180"},"kids_cap":{"t":"ptr","v":"0x0e9cb180"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9cb178"},"kids_end":{"t":"ptr","v":"0x0e9cb180"},"kids_cap":{"t":"ptr","v":"0x0e9cb180"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cb188"},"kids_end":{"t":"ptr","v":"0x0e9cb18c"},"kids_cap":{"t":"ptr","v":"0x0e9cb18c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cb188"},"kids_end":{"t":"ptr","v":"0x0e9cb18c"},"kids_cap":{"t":"ptr","v":"0x0e9cb18c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9cb1b8"},"kids_end":{"t":"ptr","v":"0x0e9cb1bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9cb1b8"},"kids_end":{"t":"ptr","v":"0x0e9cb1bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9cb288"},"kids_end":{"t":"ptr","v":"0x0e9cb28c"},"kids_cap":{"t":"ptr","v":"0x0e9cb28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9cb288"},"kids_end":{"t":"ptr","v":"0x0e9cb28c"},"kids_cap":{"t":"ptr","v":"0x0e9cb28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe8f0"},"kids_end":{"t":"ptr","v":"0x0e8fe8fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe8f0"},"kids_end":{"t":"ptr","v":"0x0e8fe8fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cb2d8"},"kids_end":{"t":"ptr","v":"0x0e9cb2e0"},"kids_cap":{"t":"ptr","v":"0x0e9cb2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cb2d8"},"kids_end":{"t":"ptr","v":"0x0e9cb2e0"},"kids_cap":{"t":"ptr","v":"0x0e9cb2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe950"},"kids_end":{"t":"ptr","v":"0x0e8fe960"},"kids_cap":{"t":"ptr","v":"0x0e8fe960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe950"},"kids_end":{"t":"ptr","v":"0x0e8fe960"},"kids_cap":{"t":"ptr","v":"0x0e8fe960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cb1c8"},"kids_end":{"t":"ptr","v":"0x0e9cb1cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cb1c8"},"kids_end":{"t":"ptr","v":"0x0e9cb1cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cb1d8"},"kids_end":{"t":"ptr","v":"0x0e9cb1dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cb1d8"},"kids_end":{"t":"ptr","v":"0x0e9cb1dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fe908"},"kids_end":{"t":"ptr","v":"0x0e8fe914"},"kids_cap":{"t":"ptr","v":"0x0e8fe914"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fe908"},"kids_end":{"t":"ptr","v":"0x0e8fe914"},"kids_cap":{"t":"ptr","v":"0x0e8fe914"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9cb238"},"kids_end":{"t":"ptr","v":"0x0e9cb23c"},"kids_cap":{"t":"ptr","v":"0x0e9cb23c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9cb238"},"kids_end":{"t":"ptr","v":"0x0e9cb23c"},"kids_cap":{"t":"ptr","v":"0x0e9cb23c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cb1e8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cb1e8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9cb2f8"},"kids_end":{"t":"ptr","v":"0x0e9cb2fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb2fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9cb2f8"},"kids_end":{"t":"ptr","v":"0x0e9cb2fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb2fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe968"},"kids_end":{"t":"ptr","v":"0x0e8fe974"},"kids_cap":{"t":"ptr","v":"0x0e8fe974"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe968"},"kids_end":{"t":"ptr","v":"0x0e8fe974"},"kids_cap":{"t":"ptr","v":"0x0e8fe974"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fcce8"},"kids_end":{"t":"ptr","v":"0x0e8fccf8"},"kids_cap":{"t":"ptr","v":"0x0e8fccf8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fcce8"},"kids_end":{"t":"ptr","v":"0x0e8fccf8"},"kids_cap":{"t":"ptr","v":"0x0e8fccf8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cb318"},"kids_end":{"t":"ptr","v":"0x0e9cb31c"},"kids_cap":{"t":"ptr","v":"0x0e9cb31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cb318"},"kids_end":{"t":"ptr","v":"0x0e9cb31c"},"kids_cap":{"t":"ptr","v":"0x0e9cb31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cb248"},"kids_end":{"t":"ptr","v":"0x0e9cb24c"},"kids_cap":{"t":"ptr","v":"0x0e9cb24c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cb248"},"kids_end":{"t":"ptr","v":"0x0e9cb24c"},"kids_cap":{"t":"ptr","v":"0x0e9cb24c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb1f8"},"kids_end":{"t":"ptr","v":"0x0e9cb1fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb1f8"},"kids_end":{"t":"ptr","v":"0x0e9cb1fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb308"},"kids_end":{"t":"ptr","v":"0x0e9cb30c"},"kids_cap":{"t":"ptr","v":"0x0e9cb30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb308"},"kids_end":{"t":"ptr","v":"0x0e9cb30c"},"kids_cap":{"t":"ptr","v":"0x0e9cb30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9cb268"},"kids_end":{"t":"ptr","v":"0x0e9cb270"},"kids_cap":{"t":"ptr","v":"0x0e9cb270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9cb268"},"kids_end":{"t":"ptr","v":"0x0e9cb270"},"kids_cap":{"t":"ptr","v":"0x0e9cb270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fcd18"},"kids_end":{"t":"ptr","v":"0x0e8fcd24"},"kids_cap":{"t":"ptr","v":"0x0e8fcd24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fcd18"},"kids_end":{"t":"ptr","v":"0x0e8fcd24"},"kids_cap":{"t":"ptr","v":"0x0e8fcd24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb208"},"kids_end":{"t":"ptr","v":"0x0e9cb210"},"kids_cap":{"t":"ptr","v":"0x0e9cb210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb208"},"kids_end":{"t":"ptr","v":"0x0e9cb210"},"kids_cap":{"t":"ptr","v":"0x0e9cb210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fcb50"},"kids_end":{"t":"ptr","v":"0x0e8fcb5c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fcb50"},"kids_end":{"t":"ptr","v":"0x0e8fcb5c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fcad8"},"kids_end":{"t":"ptr","v":"0x0e8fcae4"},"kids_cap":{"t":"ptr","v":"0x0e8fcae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fcad8"},"kids_end":{"t":"ptr","v":"0x0e8fcae4"},"kids_cap":{"t":"ptr","v":"0x0e8fcae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e9cb218"},"kids_end":{"t":"ptr","v":"0x0e9cb220"},"kids_cap":{"t":"ptr","v":"0x0e9cb220"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e9cb218"},"kids_end":{"t":"ptr","v":"0x0e9cb220"},"kids_cap":{"t":"ptr","v":"0x0e9cb220"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9cb328"},"kids_end":{"t":"ptr","v":"0x0e9cb32c"},"kids_cap":{"t":"ptr","v":"0x0e9cb32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9cb328"},"kids_end":{"t":"ptr","v":"0x0e9cb32c"},"kids_cap":{"t":"ptr","v":"0x0e9cb32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cb278"},"kids_end":{"t":"ptr","v":"0x0e9cb27c"},"kids_cap":{"t":"ptr","v":"0x0e9cb27c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cb278"},"kids_end":{"t":"ptr","v":"0x0e9cb27c"},"kids_cap":{"t":"ptr","v":"0x0e9cb27c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fcc40"},"kids_end":{"t":"ptr","v":"0x0e8fcc4c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fcc40"},"kids_end":{"t":"ptr","v":"0x0e8fcc4c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9cb298"},"kids_end":{"t":"ptr","v":"0x0e9cb29c"},"kids_cap":{"t":"ptr","v":"0x0e9cb29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9cb298"},"kids_end":{"t":"ptr","v":"0x0e9cb29c"},"kids_cap":{"t":"ptr","v":"0x0e9cb29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb2a8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb2a8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9cb3b8"},"kids_end":{"t":"ptr","v":"0x0e9cb3bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9cb3b8"},"kids_end":{"t":"ptr","v":"0x0e9cb3bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cb358"},"kids_end":{"t":"ptr","v":"0x0e9cb35c"},"kids_cap":{"t":"ptr","v":"0x0e9cb35c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cb358"},"kids_end":{"t":"ptr","v":"0x0e9cb35c"},"kids_cap":{"t":"ptr","v":"0x0e9cb35c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fcb68"},"kids_end":{"t":"ptr","v":"0x0e8fcb74"},"kids_cap":{"t":"ptr","v":"0x0e8fcb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fcb68"},"kids_end":{"t":"ptr","v":"0x0e8fcb74"},"kids_cap":{"t":"ptr","v":"0x0e8fcb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9cb448"},"kids_end":{"t":"ptr","v":"0x0e9cb44c"},"kids_cap":{"t":"ptr","v":"0x0e9cb44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9cb448"},"kids_end":{"t":"ptr","v":"0x0e9cb44c"},"kids_cap":{"t":"ptr","v":"0x0e9cb44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb408"},"kids_end":{"t":"ptr","v":"0x0e9cb40c"},"kids_cap":{"t":"ptr","v":"0x0e9cb40c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb408"},"kids_end":{"t":"ptr","v":"0x0e9cb40c"},"kids_cap":{"t":"ptr","v":"0x0e9cb40c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb3e8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb3e8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb4a8"},"kids_end":{"t":"ptr","v":"0x0e9cb4ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb4a8"},"kids_end":{"t":"ptr","v":"0x0e9cb4ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb4d8"},"kids_end":{"t":"ptr","v":"0x0e9cb4dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb4d8"},"kids_end":{"t":"ptr","v":"0x0e9cb4dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb498"},"kids_end":{"t":"ptr","v":"0x0e9cb49c"},"kids_cap":{"t":"ptr","v":"0x0e9cb49c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb498"},"kids_end":{"t":"ptr","v":"0x0e9cb49c"},"kids_cap":{"t":"ptr","v":"0x0e9cb49c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9cb3f8"},"kids_end":{"t":"ptr","v":"0x0e9cb3fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9cb3f8"},"kids_end":{"t":"ptr","v":"0x0e9cb3fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fcaf0"},"kids_end":{"t":"ptr","v":"0x0e8fcafc"},"kids_cap":{"t":"ptr","v":"0x0e8fcafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fcaf0"},"kids_end":{"t":"ptr","v":"0x0e8fcafc"},"kids_cap":{"t":"ptr","v":"0x0e8fcafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fcb08"},"kids_end":{"t":"ptr","v":"0x0e8fcb14"},"kids_cap":{"t":"ptr","v":"0x0e8fcb14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fcb08"},"kids_end":{"t":"ptr","v":"0x0e8fcb14"},"kids_cap":{"t":"ptr","v":"0x0e8fcb14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb3a8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb3a8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb488"},"kids_end":{"t":"ptr","v":"0x0e9cb490"},"kids_cap":{"t":"ptr","v":"0x0e9cb490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb488"},"kids_end":{"t":"ptr","v":"0x0e9cb490"},"kids_cap":{"t":"ptr","v":"0x0e9cb490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cb4c8"},"kids_end":{"t":"ptr","v":"0x0e9cb4cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cb4c8"},"kids_end":{"t":"ptr","v":"0x0e9cb4cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88ce18"},"kids_end":{"t":"ptr","v":"0x0e88ce2c"},"kids_cap":{"t":"ptr","v":"0x0e88ce2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88ce18"},"kids_end":{"t":"ptr","v":"0x0e88ce2c"},"kids_cap":{"t":"ptr","v":"0x0e88ce2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fcb80"},"kids_end":{"t":"ptr","v":"0x0e8fcb8c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fcb80"},"kids_end":{"t":"ptr","v":"0x0e8fcb8c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969de0"},"kids_end":{"t":"ptr","v":"0x0e969e04"},"kids_cap":{"t":"ptr","v":"0x0e969e04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969de0"},"kids_end":{"t":"ptr","v":"0x0e969e04"},"kids_cap":{"t":"ptr","v":"0x0e969e04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fcc28"},"kids_end":{"t":"ptr","v":"0x0e8fcc34"},"kids_cap":{"t":"ptr","v":"0x0e8fcc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fcc28"},"kids_end":{"t":"ptr","v":"0x0e8fcc34"},"kids_cap":{"t":"ptr","v":"0x0e8fcc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[86]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921a90"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e9cb348"},"kids_end":{"t":"ptr","v":"0x0e9cb34c"},"kids_cap":{"t":"ptr","v":"0x0e9cb34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921a90"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e9cb348"},"kids_end":{"t":"ptr","v":"0x0e9cb34c"},"kids_cap":{"t":"ptr","v":"0x0e9cb34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[87]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04922318"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e9cb388"},"kids_end":{"t":"ptr","v":"0x0e9cb390"},"kids_cap":{"t":"ptr","v":"0x0e9cb390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04922318"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e9cb388"},"kids_end":{"t":"ptr","v":"0x0e9cb390"},"kids_cap":{"t":"ptr","v":"0x0e9cb390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[88]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920ab8"},"tech_id":{"t":"i32","v":88},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920ab8"},"tech_id":{"t":"i32","v":88},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb4b8"},"kids_end":{"t":"ptr","v":"0x0e9cb4bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb4b8"},"kids_end":{"t":"ptr","v":"0x0e9cb4bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9cb458"},"kids_end":{"t":"ptr","v":"0x0e9cb45c"},"kids_cap":{"t":"ptr","v":"0x0e9cb45c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9cb458"},"kids_end":{"t":"ptr","v":"0x0e9cb45c"},"kids_cap":{"t":"ptr","v":"0x0e9cb45c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb468"},"kids_end":{"t":"ptr","v":"0x0e9cb46c"},"kids_cap":{"t":"ptr","v":"0x0e9cb46c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb468"},"kids_end":{"t":"ptr","v":"0x0e9cb46c"},"kids_cap":{"t":"ptr","v":"0x0e9cb46c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb478"},"kids_end":{"t":"ptr","v":"0x0e9cb47c"},"kids_cap":{"t":"ptr","v":"0x0e9cb47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb478"},"kids_end":{"t":"ptr","v":"0x0e9cb47c"},"kids_cap":{"t":"ptr","v":"0x0e9cb47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb3d8"},"kids_end":{"t":"ptr","v":"0x0e9cb3dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb3d8"},"kids_end":{"t":"ptr","v":"0x0e9cb3dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb438"},"kids_end":{"t":"ptr","v":"0x0e9cb440"},"kids_cap":{"t":"ptr","v":"0x0e9cb440"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb438"},"kids_end":{"t":"ptr","v":"0x0e9cb440"},"kids_cap":{"t":"ptr","v":"0x0e9cb440"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb368"},"kids_end":{"t":"ptr","v":"0x0e9cb370"},"kids_cap":{"t":"ptr","v":"0x0e9cb370"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb368"},"kids_end":{"t":"ptr","v":"0x0e9cb370"},"kids_cap":{"t":"ptr","v":"0x0e9cb370"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d378"},"kids_end":{"t":"ptr","v":"0x0e88d38c"},"kids_cap":{"t":"ptr","v":"0x0e88d38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d378"},"kids_end":{"t":"ptr","v":"0x0e88d38c"},"kids_cap":{"t":"ptr","v":"0x0e88d38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fcb20"},"kids_end":{"t":"ptr","v":"0x0e8fcb2c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fcb20"},"kids_end":{"t":"ptr","v":"0x0e8fcb2c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb378"},"kids_end":{"t":"ptr","v":"0x0e9cb37c"},"kids_cap":{"t":"ptr","v":"0x0e9cb37c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb378"},"kids_end":{"t":"ptr","v":"0x0e9cb37c"},"kids_cap":{"t":"ptr","v":"0x0e9cb37c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb398"},"kids_end":{"t":"ptr","v":"0x0e9cb39c"},"kids_cap":{"t":"ptr","v":"0x0e9cb39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb398"},"kids_end":{"t":"ptr","v":"0x0e9cb39c"},"kids_cap":{"t":"ptr","v":"0x0e9cb39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9cb3c8"},"kids_end":{"t":"ptr","v":"0x0e9cb3cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9cb3c8"},"kids_end":{"t":"ptr","v":"0x0e9cb3cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9cb418"},"kids_end":{"t":"ptr","v":"0x0e9cb41c"},"kids_cap":{"t":"ptr","v":"0x0e9cb41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9cb418"},"kids_end":{"t":"ptr","v":"0x0e9cb41c"},"kids_cap":{"t":"ptr","v":"0x0e9cb41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e9cb428"},"kids_end":{"t":"ptr","v":"0x0e9cb430"},"kids_cap":{"t":"ptr","v":"0x0e9cb430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e9cb428"},"kids_end":{"t":"ptr","v":"0x0e9cb430"},"kids_cap":{"t":"ptr","v":"0x0e9cb430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fccd0"},"kids_end":{"t":"ptr","v":"0x0e8fccdc"},"kids_cap":{"t":"ptr","v":"0x0e8fccdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fccd0"},"kids_end":{"t":"ptr","v":"0x0e8fccdc"},"kids_cap":{"t":"ptr","v":"0x0e8fccdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e9c95d8"},"kids_end":{"t":"ptr","v":"0x0e9c95e0"},"kids_cap":{"t":"ptr","v":"0x0e9c95e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e9c95d8"},"kids_end":{"t":"ptr","v":"0x0e9c95e0"},"kids_cap":{"t":"ptr","v":"0x0e9c95e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9c9638"},"kids_end":{"t":"ptr","v":"0x0e9c9640"},"kids_cap":{"t":"ptr","v":"0x0e9c9640"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9c9638"},"kids_end":{"t":"ptr","v":"0x0e9c9640"},"kids_cap":{"t":"ptr","v":"0x0e9c9640"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e9c9718"},"kids_end":{"t":"ptr","v":"0x0e9c971c"},"kids_cap":{"t":"ptr","v":"0x0e9c971c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e9c9718"},"kids_end":{"t":"ptr","v":"0x0e9c971c"},"kids_cap":{"t":"ptr","v":"0x0e9c971c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fcbf8"},"kids_end":{"t":"ptr","v":"0x0e8fcc04"},"kids_cap":{"t":"ptr","v":"0x0e8fcc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fcbf8"},"kids_end":{"t":"ptr","v":"0x0e8fcc04"},"kids_cap":{"t":"ptr","v":"0x0e8fcc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fcb38"},"kids_end":{"t":"ptr","v":"0x0e8fcb44"},"kids_cap":{"t":"ptr","v":"0x0e8fcb44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fcb38"},"kids_end":{"t":"ptr","v":"0x0e8fcb44"},"kids_cap":{"t":"ptr","v":"0x0e8fcb44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fcb98"},"kids_end":{"t":"ptr","v":"0x0e8fcba8"},"kids_cap":{"t":"ptr","v":"0x0e8fcba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fcb98"},"kids_end":{"t":"ptr","v":"0x0e8fcba8"},"kids_cap":{"t":"ptr","v":"0x0e8fcba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9c96a8"},"kids_end":{"t":"ptr","v":"0x0e9c96b0"},"kids_cap":{"t":"ptr","v":"0x0e9c96b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9c96a8"},"kids_end":{"t":"ptr","v":"0x0e9c96b0"},"kids_cap":{"t":"ptr","v":"0x0e9c96b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9c9588"},"kids_end":{"t":"ptr","v":"0x0e9c958c"},"kids_cap":{"t":"ptr","v":"0x0e9c958c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9c9588"},"kids_end":{"t":"ptr","v":"0x0e9c958c"},"kids_cap":{"t":"ptr","v":"0x0e9c958c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fcbe0"},"kids_end":{"t":"ptr","v":"0x0e8fcbec"},"kids_cap":{"t":"ptr","v":"0x0e8fcbec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fcbe0"},"kids_end":{"t":"ptr","v":"0x0e8fcbec"},"kids_cap":{"t":"ptr","v":"0x0e8fcbec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9c96f8"},"kids_end":{"t":"ptr","v":"0x0e9c96fc"},"kids_cap":{"t":"ptr","v":"0x0e9c96fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9c96f8"},"kids_end":{"t":"ptr","v":"0x0e9c96fc"},"kids_cap":{"t":"ptr","v":"0x0e9c96fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9c9598"},"kids_end":{"t":"ptr","v":"0x0e9c959c"},"kids_cap":{"t":"ptr","v":"0x0e9c959c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9c9598"},"kids_end":{"t":"ptr","v":"0x0e9c959c"},"kids_cap":{"t":"ptr","v":"0x0e9c959c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e9c95e8"},"kids_end":{"t":"ptr","v":"0x0e9c95ec"},"kids_cap":{"t":"ptr","v":"0x0e9c95ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e9c95e8"},"kids_end":{"t":"ptr","v":"0x0e9c95ec"},"kids_cap":{"t":"ptr","v":"0x0e9c95ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e9c96d8"},"kids_end":{"t":"ptr","v":"0x0e9c96e0"},"kids_cap":{"t":"ptr","v":"0x0e9c96e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e9c96d8"},"kids_end":{"t":"ptr","v":"0x0e9c96e0"},"kids_cap":{"t":"ptr","v":"0x0e9c96e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9c9618"},"kids_end":{"t":"ptr","v":"0x0e9c961c"},"kids_cap":{"t":"ptr","v":"0x0e9c961c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9c9618"},"kids_end":{"t":"ptr","v":"0x0e9c961c"},"kids_cap":{"t":"ptr","v":"0x0e9c961c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9c9548"},"kids_end":{"t":"ptr","v":"0x0e9c9550"},"kids_cap":{"t":"ptr","v":"0x0e9c9550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9c9548"},"kids_end":{"t":"ptr","v":"0x0e9c9550"},"kids_cap":{"t":"ptr","v":"0x0e9c9550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fcd00"},"kids_end":{"t":"ptr","v":"0x0e8fcd0c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fcd00"},"kids_end":{"t":"ptr","v":"0x0e8fcd0c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e9c95a8"},"kids_end":{"t":"ptr","v":"0x0e9c95ac"},"kids_cap":{"t":"ptr","v":"0x0e9c95ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e9c95a8"},"kids_end":{"t":"ptr","v":"0x0e9c95ac"},"kids_cap":{"t":"ptr","v":"0x0e9c95ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9c9708"},"kids_end":{"t":"ptr","v":"0x0e9c9710"},"kids_cap":{"t":"ptr","v":"0x0e9c9710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9c9708"},"kids_end":{"t":"ptr","v":"0x0e9c9710"},"kids_cap":{"t":"ptr","v":"0x0e9c9710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e9c9558"},"kids_end":{"t":"ptr","v":"0x0e9c955c"},"kids_cap":{"t":"ptr","v":"0x0e9c955c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e9c9558"},"kids_end":{"t":"ptr","v":"0x0e9c955c"},"kids_cap":{"t":"ptr","v":"0x0e9c955c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e9c9698"},"kids_end":{"t":"ptr","v":"0x0e9c96a0"},"kids_cap":{"t":"ptr","v":"0x0e9c96a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e9c9698"},"kids_end":{"t":"ptr","v":"0x0e9c96a0"},"kids_cap":{"t":"ptr","v":"0x0e9c96a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9c9648"},"kids_end":{"t":"ptr","v":"0x0e9c9650"},"kids_cap":{"t":"ptr","v":"0x0e9c9650"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9c9648"},"kids_end":{"t":"ptr","v":"0x0e9c9650"},"kids_cap":{"t":"ptr","v":"0x0e9c9650"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e9c9738"},"kids_end":{"t":"ptr","v":"0x0e9c9740"},"kids_cap":{"t":"ptr","v":"0x0e9c9740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e9c9738"},"kids_end":{"t":"ptr","v":"0x0e9c9740"},"kids_cap":{"t":"ptr","v":"0x0e9c9740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e9c9728"},"kids_end":{"t":"ptr","v":"0x0e9c9730"},"kids_cap":{"t":"ptr","v":"0x0e9c9730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e9c9728"},"kids_end":{"t":"ptr","v":"0x0e9c9730"},"kids_cap":{"t":"ptr","v":"0x0e9c9730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e9c96b8"},"kids_end":{"t":"ptr","v":"0x0e9c96bc"},"kids_cap":{"t":"ptr","v":"0x0e9c96bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e9c96b8"},"kids_end":{"t":"ptr","v":"0x0e9c96bc"},"kids_cap":{"t":"ptr","v":"0x0e9c96bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9c9568"},"kids_end":{"t":"ptr","v":"0x0e9c956c"},"kids_cap":{"t":"ptr","v":"0x0e9c956c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9c9568"},"kids_end":{"t":"ptr","v":"0x0e9c956c"},"kids_cap":{"t":"ptr","v":"0x0e9c956c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9c9578"},"kids_end":{"t":"ptr","v":"0x0e9c9580"},"kids_cap":{"t":"ptr","v":"0x0e9c9580"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9c9578"},"kids_end":{"t":"ptr","v":"0x0e9c9580"},"kids_cap":{"t":"ptr","v":"0x0e9c9580"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9c95c8"},"kids_end":{"t":"ptr","v":"0x0e9c95d0"},"kids_cap":{"t":"ptr","v":"0x0e9c95d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9c95c8"},"kids_end":{"t":"ptr","v":"0x0e9c95d0"},"kids_cap":{"t":"ptr","v":"0x0e9c95d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9c95b8"},"kids_end":{"t":"ptr","v":"0x0e9c95bc"},"kids_cap":{"t":"ptr","v":"0x0e9c95bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9c95b8"},"kids_end":{"t":"ptr","v":"0x0e9c95bc"},"kids_cap":{"t":"ptr","v":"0x0e9c95bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e9c95f8"},"kids_end":{"t":"ptr","v":"0x0e9c95fc"},"kids_cap":{"t":"ptr","v":"0x0e9c95fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e9c95f8"},"kids_end":{"t":"ptr","v":"0x0e9c95fc"},"kids_cap":{"t":"ptr","v":"0x0e9c95fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9c9608"},"kids_end":{"t":"ptr","v":"0x0e9c9610"},"kids_cap":{"t":"ptr","v":"0x0e9c9610"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9c9608"},"kids_end":{"t":"ptr","v":"0x0e9c9610"},"kids_cap":{"t":"ptr","v":"0x0e9c9610"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9c9628"},"kids_end":{"t":"ptr","v":"0x0e9c962c"},"kids_cap":{"t":"ptr","v":"0x0e9c962c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9c9628"},"kids_end":{"t":"ptr","v":"0x0e9c962c"},"kids_cap":{"t":"ptr","v":"0x0e9c962c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e9c9658"},"kids_end":{"t":"ptr","v":"0x0e9c965c"},"kids_cap":{"t":"ptr","v":"0x0e9c965c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e9c9658"},"kids_end":{"t":"ptr","v":"0x0e9c965c"},"kids_cap":{"t":"ptr","v":"0x0e9c965c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9c9668"},"kids_end":{"t":"ptr","v":"0x0e9c9670"},"kids_cap":{"t":"ptr","v":"0x0e9c9670"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9c9668"},"kids_end":{"t":"ptr","v":"0x0e9c9670"},"kids_cap":{"t":"ptr","v":"0x0e9c9670"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9c9678"},"kids_end":{"t":"ptr","v":"0x0e9c967c"},"kids_cap":{"t":"ptr","v":"0x0e9c967c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9c9678"},"kids_end":{"t":"ptr","v":"0x0e9c967c"},"kids_cap":{"t":"ptr","v":"0x0e9c967c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e9c96c8"},"kids_end":{"t":"ptr","v":"0x0e9c96cc"},"kids_cap":{"t":"ptr","v":"0x0e9c96cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e9c96c8"},"kids_end":{"t":"ptr","v":"0x0e9c96cc"},"kids_cap":{"t":"ptr","v":"0x0e9c96cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fcbb0"},"kids_end":{"t":"ptr","v":"0x0e8fcbbc"},"kids_cap":{"t":"ptr","v":"0x0e8fcbbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fcbb0"},"kids_end":{"t":"ptr","v":"0x0e8fcbbc"},"kids_cap":{"t":"ptr","v":"0x0e8fcbbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fcd78"},"kids_end":{"t":"ptr","v":"0x0e8fcd88"},"kids_cap":{"t":"ptr","v":"0x0e8fcd88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fcd78"},"kids_end":{"t":"ptr","v":"0x0e8fcd88"},"kids_cap":{"t":"ptr","v":"0x0e8fcd88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9c96e8"},"kids_end":{"t":"ptr","v":"0x0e9c96f0"},"kids_cap":{"t":"ptr","v":"0x0e9c96f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9c96e8"},"kids_end":{"t":"ptr","v":"0x0e9c96f0"},"kids_cap":{"t":"ptr","v":"0x0e9c96f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e9c9688"},"kids_end":{"t":"ptr","v":"0x0e9c9690"},"kids_cap":{"t":"ptr","v":"0x0e9c9690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e9c9688"},"kids_end":{"t":"ptr","v":"0x0e9c9690"},"kids_cap":{"t":"ptr","v":"0x0e9c9690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9c98e8"},"kids_end":{"t":"ptr","v":"0x0e9c98ec"},"kids_cap":{"t":"ptr","v":"0x0e9c98ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9c98e8"},"kids_end":{"t":"ptr","v":"0x0e9c98ec"},"kids_cap":{"t":"ptr","v":"0x0e9c98ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9c97a8"},"kids_end":{"t":"ptr","v":"0x0e9c97b0"},"kids_cap":{"t":"ptr","v":"0x0e9c97b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9c97a8"},"kids_end":{"t":"ptr","v":"0x0e9c97b0"},"kids_cap":{"t":"ptr","v":"0x0e9c97b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e9c98b8"},"kids_end":{"t":"ptr","v":"0x0e9c98c0"},"kids_cap":{"t":"ptr","v":"0x0e9c98c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e9c98b8"},"kids_end":{"t":"ptr","v":"0x0e9c98c0"},"kids_cap":{"t":"ptr","v":"0x0e9c98c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9c98a8"},"kids_end":{"t":"ptr","v":"0x0e9c98b0"},"kids_cap":{"t":"ptr","v":"0x0e9c98b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9c98a8"},"kids_end":{"t":"ptr","v":"0x0e9c98b0"},"kids_cap":{"t":"ptr","v":"0x0e9c98b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e9c98d8"},"kids_end":{"t":"ptr","v":"0x0e9c98dc"},"kids_cap":{"t":"ptr","v":"0x0e9c98dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e9c98d8"},"kids_end":{"t":"ptr","v":"0x0e9c98dc"},"kids_cap":{"t":"ptr","v":"0x0e9c98dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e9c9748"},"kids_end":{"t":"ptr","v":"0x0e9c974c"},"kids_cap":{"t":"ptr","v":"0x0e9c974c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e9c9748"},"kids_end":{"t":"ptr","v":"0x0e9c974c"},"kids_cap":{"t":"ptr","v":"0x0e9c974c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9c9788"},"kids_end":{"t":"ptr","v":"0x0e9c9790"},"kids_cap":{"t":"ptr","v":"0x0e9c9790"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9c9788"},"kids_end":{"t":"ptr","v":"0x0e9c9790"},"kids_cap":{"t":"ptr","v":"0x0e9c9790"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e9c9758"},"kids_end":{"t":"ptr","v":"0x0e9c975c"},"kids_cap":{"t":"ptr","v":"0x0e9c975c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e9c9758"},"kids_end":{"t":"ptr","v":"0x0e9c975c"},"kids_cap":{"t":"ptr","v":"0x0e9c975c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fcd60"},"kids_end":{"t":"ptr","v":"0x0e8fcd6c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fcd60"},"kids_end":{"t":"ptr","v":"0x0e8fcd6c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9c98c8"},"kids_end":{"t":"ptr","v":"0x0e9c98cc"},"kids_cap":{"t":"ptr","v":"0x0e9c98cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9c98c8"},"kids_end":{"t":"ptr","v":"0x0e9c98cc"},"kids_cap":{"t":"ptr","v":"0x0e9c98cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d098"},"kids_end":{"t":"ptr","v":"0x0e88d0ac"},"kids_cap":{"t":"ptr","v":"0x0e88d0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d098"},"kids_end":{"t":"ptr","v":"0x0e88d0ac"},"kids_cap":{"t":"ptr","v":"0x0e88d0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e9c98f8"},"kids_end":{"t":"ptr","v":"0x0e9c98fc"},"kids_cap":{"t":"ptr","v":"0x0e9c98fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e9c98f8"},"kids_end":{"t":"ptr","v":"0x0e9c98fc"},"kids_cap":{"t":"ptr","v":"0x0e9c98fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e9c9878"},"kids_end":{"t":"ptr","v":"0x0e9c987c"},"kids_cap":{"t":"ptr","v":"0x0e9c987c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e9c9878"},"kids_end":{"t":"ptr","v":"0x0e9c987c"},"kids_cap":{"t":"ptr","v":"0x0e9c987c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e9c9838"},"kids_end":{"t":"ptr","v":"0x0e9c983c"},"kids_cap":{"t":"ptr","v":"0x0e9c983c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e9c9838"},"kids_end":{"t":"ptr","v":"0x0e9c983c"},"kids_cap":{"t":"ptr","v":"0x0e9c983c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9c9908"},"kids_end":{"t":"ptr","v":"0x0e9c990c"},"kids_cap":{"t":"ptr","v":"0x0e9c990c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9c9908"},"kids_end":{"t":"ptr","v":"0x0e9c990c"},"kids_cap":{"t":"ptr","v":"0x0e9c990c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9c9818"},"kids_end":{"t":"ptr","v":"0x0e9c981c"},"kids_cap":{"t":"ptr","v":"0x0e9c981c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9c9818"},"kids_end":{"t":"ptr","v":"0x0e9c981c"},"kids_cap":{"t":"ptr","v":"0x0e9c981c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fcd30"},"kids_end":{"t":"ptr","v":"0x0e8fcd40"},"kids_cap":{"t":"ptr","v":"0x0e8fcd40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fcd30"},"kids_end":{"t":"ptr","v":"0x0e8fcd40"},"kids_cap":{"t":"ptr","v":"0x0e8fcd40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fcbc8"},"kids_end":{"t":"ptr","v":"0x0e8fcbd4"},"kids_cap":{"t":"ptr","v":"0x0e8fcbd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fcbc8"},"kids_end":{"t":"ptr","v":"0x0e8fcbd4"},"kids_cap":{"t":"ptr","v":"0x0e8fcbd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[217]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e840"},"tech_id":{"t":"i32","v":217},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e840"},"tech_id":{"t":"i32","v":217},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9c9928"},"kids_end":{"t":"ptr","v":"0x0e9c992c"},"kids_cap":{"t":"ptr","v":"0x0e9c992c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9c9928"},"kids_end":{"t":"ptr","v":"0x0e9c992c"},"kids_cap":{"t":"ptr","v":"0x0e9c992c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9c97c8"},"kids_end":{"t":"ptr","v":"0x0e9c97cc"},"kids_cap":{"t":"ptr","v":"0x0e9c97cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9c97c8"},"kids_end":{"t":"ptr","v":"0x0e9c97cc"},"kids_cap":{"t":"ptr","v":"0x0e9c97cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fcc58"},"kids_end":{"t":"ptr","v":"0x0e8fcc68"},"kids_cap":{"t":"ptr","v":"0x0e8fcc68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fcc58"},"kids_end":{"t":"ptr","v":"0x0e8fcc68"},"kids_cap":{"t":"ptr","v":"0x0e8fcc68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9c9798"},"kids_end":{"t":"ptr","v":"0x0e9c97a0"},"kids_cap":{"t":"ptr","v":"0x0e9c97a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9c9798"},"kids_end":{"t":"ptr","v":"0x0e9c97a0"},"kids_cap":{"t":"ptr","v":"0x0e9c97a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9c9938"},"kids_end":{"t":"ptr","v":"0x0e9c993c"},"kids_cap":{"t":"ptr","v":"0x0e9c993c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9c9938"},"kids_end":{"t":"ptr","v":"0x0e9c993c"},"kids_cap":{"t":"ptr","v":"0x0e9c993c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e9c9778"},"kids_end":{"t":"ptr","v":"0x0e9c977c"},"kids_cap":{"t":"ptr","v":"0x0e9c977c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e9c9778"},"kids_end":{"t":"ptr","v":"0x0e9c977c"},"kids_cap":{"t":"ptr","v":"0x0e9c977c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fcd48"},"kids_end":{"t":"ptr","v":"0x0e8fcd54"},"kids_cap":{"t":"ptr","v":"0x0e8fcd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fcd48"},"kids_end":{"t":"ptr","v":"0x0e8fcd54"},"kids_cap":{"t":"ptr","v":"0x0e8fcd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9c9768"},"kids_end":{"t":"ptr","v":"0x0e9c9770"},"kids_cap":{"t":"ptr","v":"0x0e9c9770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9c9768"},"kids_end":{"t":"ptr","v":"0x0e9c9770"},"kids_cap":{"t":"ptr","v":"0x0e9c9770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d398"},"kids_end":{"t":"ptr","v":"0x0e88d3ac"},"kids_cap":{"t":"ptr","v":"0x0e88d3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d398"},"kids_end":{"t":"ptr","v":"0x0e88d3ac"},"kids_cap":{"t":"ptr","v":"0x0e88d3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e9c9888"},"kids_end":{"t":"ptr","v":"0x0e9c988c"},"kids_cap":{"t":"ptr","v":"0x0e9c988c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e9c9888"},"kids_end":{"t":"ptr","v":"0x0e9c988c"},"kids_cap":{"t":"ptr","v":"0x0e9c988c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e9c97b8"},"kids_end":{"t":"ptr","v":"0x0e9c97bc"},"kids_cap":{"t":"ptr","v":"0x0e9c97bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e9c97b8"},"kids_end":{"t":"ptr","v":"0x0e9c97bc"},"kids_cap":{"t":"ptr","v":"0x0e9c97bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9c9898"},"kids_end":{"t":"ptr","v":"0x0e9c989c"},"kids_cap":{"t":"ptr","v":"0x0e9c989c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9c9898"},"kids_end":{"t":"ptr","v":"0x0e9c989c"},"kids_cap":{"t":"ptr","v":"0x0e9c989c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e9c97d8"},"kids_end":{"t":"ptr","v":"0x0e9c97dc"},"kids_cap":{"t":"ptr","v":"0x0e9c97dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e9c97d8"},"kids_end":{"t":"ptr","v":"0x0e9c97dc"},"kids_cap":{"t":"ptr","v":"0x0e9c97dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9c97e8"},"kids_end":{"t":"ptr","v":"0x0e9c97ec"},"kids_cap":{"t":"ptr","v":"0x0e9c97ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9c97e8"},"kids_end":{"t":"ptr","v":"0x0e9c97ec"},"kids_cap":{"t":"ptr","v":"0x0e9c97ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9c97f8"},"kids_end":{"t":"ptr","v":"0x0e9c9800"},"kids_cap":{"t":"ptr","v":"0x0e9c9800"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9c97f8"},"kids_end":{"t":"ptr","v":"0x0e9c9800"},"kids_cap":{"t":"ptr","v":"0x0e9c9800"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d078"},"kids_end":{"t":"ptr","v":"0x0e88d08c"},"kids_cap":{"t":"ptr","v":"0x0e88d08c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d078"},"kids_end":{"t":"ptr","v":"0x0e88d08c"},"kids_cap":{"t":"ptr","v":"0x0e88d08c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e9c9918"},"kids_end":{"t":"ptr","v":"0x0e9c991c"},"kids_cap":{"t":"ptr","v":"0x0e9c991c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e9c9918"},"kids_end":{"t":"ptr","v":"0x0e9c991c"},"kids_cap":{"t":"ptr","v":"0x0e9c991c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9c9848"},"kids_end":{"t":"ptr","v":"0x0e9c984c"},"kids_cap":{"t":"ptr","v":"0x0e9c984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9c9848"},"kids_end":{"t":"ptr","v":"0x0e9c984c"},"kids_cap":{"t":"ptr","v":"0x0e9c984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e9c9868"},"kids_end":{"t":"ptr","v":"0x0e9c986c"},"kids_cap":{"t":"ptr","v":"0x0e9c986c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e9c9868"},"kids_end":{"t":"ptr","v":"0x0e9c986c"},"kids_cap":{"t":"ptr","v":"0x0e9c986c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9c9808"},"kids_end":{"t":"ptr","v":"0x0e9c9810"},"kids_cap":{"t":"ptr","v":"0x0e9c9810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9c9808"},"kids_end":{"t":"ptr","v":"0x0e9c9810"},"kids_cap":{"t":"ptr","v":"0x0e9c9810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9c9858"},"kids_end":{"t":"ptr","v":"0x0e9c9860"},"kids_cap":{"t":"ptr","v":"0x0e9c9860"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9c9858"},"kids_end":{"t":"ptr","v":"0x0e9c9860"},"kids_cap":{"t":"ptr","v":"0x0e9c9860"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e9c9828"},"kids_end":{"t":"ptr","v":"0x0e9c9830"},"kids_cap":{"t":"ptr","v":"0x0e9c9830"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e9c9828"},"kids_end":{"t":"ptr","v":"0x0e9c9830"},"kids_cap":{"t":"ptr","v":"0x0e9c9830"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9c9e78"},"kids_end":{"t":"ptr","v":"0x0e9c9e7c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9c9e78"},"kids_end":{"t":"ptr","v":"0x0e9c9e7c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[253]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697168"},"tech_id":{"t":"i32","v":253},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697168"},"tech_id":{"t":"i32","v":253},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9c9e88"},"kids_end":{"t":"ptr","v":"0x0e9c9e8c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9c9e88"},"kids_end":{"t":"ptr","v":"0x0e9c9e8c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fcc10"},"kids_end":{"t":"ptr","v":"0x0e8fcc1c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fcc10"},"kids_end":{"t":"ptr","v":"0x0e8fcc1c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fca90"},"kids_end":{"t":"ptr","v":"0x0e8fca9c"},"kids_cap":{"t":"ptr","v":"0x0e8fca9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fca90"},"kids_end":{"t":"ptr","v":"0x0e8fca9c"},"kids_cap":{"t":"ptr","v":"0x0e8fca9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fcc70"},"kids_end":{"t":"ptr","v":"0x0e8fcc7c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fcc70"},"kids_end":{"t":"ptr","v":"0x0e8fcc7c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fcaa8"},"kids_end":{"t":"ptr","v":"0x0e8fcab4"},"kids_cap":{"t":"ptr","v":"0x0e8fcab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fcaa8"},"kids_end":{"t":"ptr","v":"0x0e8fcab4"},"kids_cap":{"t":"ptr","v":"0x0e8fcab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fcc88"},"kids_end":{"t":"ptr","v":"0x0e8fcc94"},"kids_cap":{"t":"ptr","v":"0x0e8fcc94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fcc88"},"kids_end":{"t":"ptr","v":"0x0e8fcc94"},"kids_cap":{"t":"ptr","v":"0x0e8fcc94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[269]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699c10"},"tech_id":{"t":"i32","v":269},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699c10"},"tech_id":{"t":"i32","v":269},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d178"},"kids_end":{"t":"ptr","v":"0x0e88d190"},"kids_cap":{"t":"ptr","v":"0x0e88d190"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d178"},"kids_end":{"t":"ptr","v":"0x0e88d190"},"kids_cap":{"t":"ptr","v":"0x0e88d190"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":80000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":80000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9ca0c8"},"kids_end":{"t":"ptr","v":"0x0e9ca0d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca0d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9ca0c8"},"kids_end":{"t":"ptr","v":"0x0e9ca0d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca0d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9ca088"},"kids_end":{"t":"ptr","v":"0x0e9ca090"},"kids_cap":{"t":"ptr","v":"0x0e9ca090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9ca088"},"kids_end":{"t":"ptr","v":"0x0e9ca090"},"kids_cap":{"t":"ptr","v":"0x0e9ca090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9c9f78"},"kids_end":{"t":"ptr","v":"0x0e9c9f80"},"kids_cap":{"t":"ptr","v":"0x0e9c9f80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9c9f78"},"kids_end":{"t":"ptr","v":"0x0e9c9f80"},"kids_cap":{"t":"ptr","v":"0x0e9c9f80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e9c9f98"},"kids_end":{"t":"ptr","v":"0x0e9c9fa0"},"kids_cap":{"t":"ptr","v":"0x0e9c9fa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e9c9f98"},"kids_end":{"t":"ptr","v":"0x0e9c9fa0"},"kids_cap":{"t":"ptr","v":"0x0e9c9fa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9c9fa8"},"kids_end":{"t":"ptr","v":"0x0e9c9fac"},"kids_cap":{"t":"ptr","v":"0x0e9c9fac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9c9fa8"},"kids_end":{"t":"ptr","v":"0x0e9c9fac"},"kids_cap":{"t":"ptr","v":"0x0e9c9fac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9ca098"},"kids_end":{"t":"ptr","v":"0x0e9ca09c"},"kids_cap":{"t":"ptr","v":"0x0e9ca09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9ca098"},"kids_end":{"t":"ptr","v":"0x0e9ca09c"},"kids_cap":{"t":"ptr","v":"0x0e9ca09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca0e8"},"kids_end":{"t":"ptr","v":"0x0e9ca0ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca0e8"},"kids_end":{"t":"ptr","v":"0x0e9ca0ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9c9fe8"},"kids_end":{"t":"ptr","v":"0x0e9c9fec"},"kids_cap":{"t":"ptr","v":"0x0e9c9fec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9c9fe8"},"kids_end":{"t":"ptr","v":"0x0e9c9fec"},"kids_cap":{"t":"ptr","v":"0x0e9c9fec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca128"},"kids_end":{"t":"ptr","v":"0x0e9ca12c"},"kids_cap":{"t":"ptr","v":"0x0e9ca12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca128"},"kids_end":{"t":"ptr","v":"0x0e9ca12c"},"kids_cap":{"t":"ptr","v":"0x0e9ca12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca008"},"kids_end":{"t":"ptr","v":"0x0e9ca00c"},"kids_cap":{"t":"ptr","v":"0x0e9ca00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca008"},"kids_end":{"t":"ptr","v":"0x0e9ca00c"},"kids_cap":{"t":"ptr","v":"0x0e9ca00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca0f8"},"kids_end":{"t":"ptr","v":"0x0e9ca0fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca0f8"},"kids_end":{"t":"ptr","v":"0x0e9ca0fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9ca0d8"},"kids_end":{"t":"ptr","v":"0x0e9ca0dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9ca0d8"},"kids_end":{"t":"ptr","v":"0x0e9ca0dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9ca058"},"kids_end":{"t":"ptr","v":"0x0e9ca05c"},"kids_cap":{"t":"ptr","v":"0x0e9ca05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9ca058"},"kids_end":{"t":"ptr","v":"0x0e9ca05c"},"kids_cap":{"t":"ptr","v":"0x0e9ca05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9c9fc8"},"kids_end":{"t":"ptr","v":"0x0e9c9fcc"},"kids_cap":{"t":"ptr","v":"0x0e9c9fcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9c9fc8"},"kids_end":{"t":"ptr","v":"0x0e9c9fcc"},"kids_cap":{"t":"ptr","v":"0x0e9c9fcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9ca018"},"kids_end":{"t":"ptr","v":"0x0e9ca01c"},"kids_cap":{"t":"ptr","v":"0x0e9ca01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9ca018"},"kids_end":{"t":"ptr","v":"0x0e9ca01c"},"kids_cap":{"t":"ptr","v":"0x0e9ca01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"before":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}},"ours":{"ret":null,"side":{"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":375},"next_index":{"t":"i64","v":249}}}},"overbudget":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9cb2e8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cb1a8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cb158"},"kids_end":{"t":"ptr","v":"0x0e9cb15c"},"kids_cap":{"t":"ptr","v":"0x0e9cb15c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9cb168"},"kids_end":{"t":"ptr","v":"0x0e9cb170"},"kids_cap":{"t":"ptr","v":"0x0e9cb170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9cb178"},"kids_end":{"t":"ptr","v":"0x0e9cb180"},"kids_cap":{"t":"ptr","v":"0x0e9cb180"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cb188"},"kids_end":{"t":"ptr","v":"0x0e9cb18c"},"kids_cap":{"t":"ptr","v":"0x0e9cb18c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9cb1b8"},"kids_end":{"t":"ptr","v":"0x0e9cb1bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9cb288"},"kids_end":{"t":"ptr","v":"0x0e9cb28c"},"kids_cap":{"t":"ptr","v":"0x0e9cb28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe8f0"},"kids_end":{"t":"ptr","v":"0x0e8fe8fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cb2d8"},"kids_end":{"t":"ptr","v":"0x0e9cb2e0"},"kids_cap":{"t":"ptr","v":"0x0e9cb2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe950"},"kids_end":{"t":"ptr","v":"0x0e8fe960"},"kids_cap":{"t":"ptr","v":"0x0e8fe960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cb1c8"},"kids_end":{"t":"ptr","v":"0x0e9cb1cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cb1d8"},"kids_end":{"t":"ptr","v":"0x0e9cb1dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fe908"},"kids_end":{"t":"ptr","v":"0x0e8fe914"},"kids_cap":{"t":"ptr","v":"0x0e8fe914"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9cb238"},"kids_end":{"t":"ptr","v":"0x0e9cb23c"},"kids_cap":{"t":"ptr","v":"0x0e9cb23c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cb1e8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9cb2f8"},"kids_end":{"t":"ptr","v":"0x0e9cb2fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb2fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe968"},"kids_end":{"t":"ptr","v":"0x0e8fe974"},"kids_cap":{"t":"ptr","v":"0x0e8fe974"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fcce8"},"kids_end":{"t":"ptr","v":"0x0e8fccf8"},"kids_cap":{"t":"ptr","v":"0x0e8fccf8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cb318"},"kids_end":{"t":"ptr","v":"0x0e9cb31c"},"kids_cap":{"t":"ptr","v":"0x0e9cb31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cb248"},"kids_end":{"t":"ptr","v":"0x0e9cb24c"},"kids_cap":{"t":"ptr","v":"0x0e9cb24c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb1f8"},"kids_end":{"t":"ptr","v":"0x0e9cb1fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb308"},"kids_end":{"t":"ptr","v":"0x0e9cb30c"},"kids_cap":{"t":"ptr","v":"0x0e9cb30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9cb268"},"kids_end":{"t":"ptr","v":"0x0e9cb270"},"kids_cap":{"t":"ptr","v":"0x0e9cb270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fcd18"},"kids_end":{"t":"ptr","v":"0x0e8fcd24"},"kids_cap":{"t":"ptr","v":"0x0e8fcd24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb208"},"kids_end":{"t":"ptr","v":"0x0e9cb210"},"kids_cap":{"t":"ptr","v":"0x0e9cb210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fcb50"},"kids_end":{"t":"ptr","v":"0x0e8fcb5c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fcad8"},"kids_end":{"t":"ptr","v":"0x0e8fcae4"},"kids_cap":{"t":"ptr","v":"0x0e8fcae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e9cb218"},"kids_end":{"t":"ptr","v":"0x0e9cb220"},"kids_cap":{"t":"ptr","v":"0x0e9cb220"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9cb328"},"kids_end":{"t":"ptr","v":"0x0e9cb32c"},"kids_cap":{"t":"ptr","v":"0x0e9cb32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cb278"},"kids_end":{"t":"ptr","v":"0x0e9cb27c"},"kids_cap":{"t":"ptr","v":"0x0e9cb27c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fcc40"},"kids_end":{"t":"ptr","v":"0x0e8fcc4c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9cb298"},"kids_end":{"t":"ptr","v":"0x0e9cb29c"},"kids_cap":{"t":"ptr","v":"0x0e9cb29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb2a8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9cb3b8"},"kids_end":{"t":"ptr","v":"0x0e9cb3bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cb358"},"kids_end":{"t":"ptr","v":"0x0e9cb35c"},"kids_cap":{"t":"ptr","v":"0x0e9cb35c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fcb68"},"kids_end":{"t":"ptr","v":"0x0e8fcb74"},"kids_cap":{"t":"ptr","v":"0x0e8fcb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9cb448"},"kids_end":{"t":"ptr","v":"0x0e9cb44c"},"kids_cap":{"t":"ptr","v":"0x0e9cb44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb408"},"kids_end":{"t":"ptr","v":"0x0e9cb40c"},"kids_cap":{"t":"ptr","v":"0x0e9cb40c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb3e8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb4a8"},"kids_end":{"t":"ptr","v":"0x0e9cb4ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb4d8"},"kids_end":{"t":"ptr","v":"0x0e9cb4dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb498"},"kids_end":{"t":"ptr","v":"0x0e9cb49c"},"kids_cap":{"t":"ptr","v":"0x0e9cb49c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9cb3f8"},"kids_end":{"t":"ptr","v":"0x0e9cb3fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fcaf0"},"kids_end":{"t":"ptr","v":"0x0e8fcafc"},"kids_cap":{"t":"ptr","v":"0x0e8fcafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fcb08"},"kids_end":{"t":"ptr","v":"0x0e8fcb14"},"kids_cap":{"t":"ptr","v":"0x0e8fcb14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb3a8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb488"},"kids_end":{"t":"ptr","v":"0x0e9cb490"},"kids_cap":{"t":"ptr","v":"0x0e9cb490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cb4c8"},"kids_end":{"t":"ptr","v":"0x0e9cb4cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88ce18"},"kids_end":{"t":"ptr","v":"0x0e88ce2c"},"kids_cap":{"t":"ptr","v":"0x0e88ce2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fcb80"},"kids_end":{"t":"ptr","v":"0x0e8fcb8c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969de0"},"kids_end":{"t":"ptr","v":"0x0e969e04"},"kids_cap":{"t":"ptr","v":"0x0e969e04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fcc28"},"kids_end":{"t":"ptr","v":"0x0e8fcc34"},"kids_cap":{"t":"ptr","v":"0x0e8fcc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[86]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921a90"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e9cb348"},"kids_end":{"t":"ptr","v":"0x0e9cb34c"},"kids_cap":{"t":"ptr","v":"0x0e9cb34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[87]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04922318"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e9cb388"},"kids_end":{"t":"ptr","v":"0x0e9cb390"},"kids_cap":{"t":"ptr","v":"0x0e9cb390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[88]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920ab8"},"tech_id":{"t":"i32","v":88},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb4b8"},"kids_end":{"t":"ptr","v":"0x0e9cb4bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9cb458"},"kids_end":{"t":"ptr","v":"0x0e9cb45c"},"kids_cap":{"t":"ptr","v":"0x0e9cb45c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb468"},"kids_end":{"t":"ptr","v":"0x0e9cb46c"},"kids_cap":{"t":"ptr","v":"0x0e9cb46c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb478"},"kids_end":{"t":"ptr","v":"0x0e9cb47c"},"kids_cap":{"t":"ptr","v":"0x0e9cb47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb3d8"},"kids_end":{"t":"ptr","v":"0x0e9cb3dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb438"},"kids_end":{"t":"ptr","v":"0x0e9cb440"},"kids_cap":{"t":"ptr","v":"0x0e9cb440"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb368"},"kids_end":{"t":"ptr","v":"0x0e9cb370"},"kids_cap":{"t":"ptr","v":"0x0e9cb370"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d378"},"kids_end":{"t":"ptr","v":"0x0e88d38c"},"kids_cap":{"t":"ptr","v":"0x0e88d38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fcb20"},"kids_end":{"t":"ptr","v":"0x0e8fcb2c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb378"},"kids_end":{"t":"ptr","v":"0x0e9cb37c"},"kids_cap":{"t":"ptr","v":"0x0e9cb37c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb398"},"kids_end":{"t":"ptr","v":"0x0e9cb39c"},"kids_cap":{"t":"ptr","v":"0x0e9cb39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9cb3c8"},"kids_end":{"t":"ptr","v":"0x0e9cb3cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9cb418"},"kids_end":{"t":"ptr","v":"0x0e9cb41c"},"kids_cap":{"t":"ptr","v":"0x0e9cb41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e9cb428"},"kids_end":{"t":"ptr","v":"0x0e9cb430"},"kids_cap":{"t":"ptr","v":"0x0e9cb430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fccd0"},"kids_end":{"t":"ptr","v":"0x0e8fccdc"},"kids_cap":{"t":"ptr","v":"0x0e8fccdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e9c95d8"},"kids_end":{"t":"ptr","v":"0x0e9c95e0"},"kids_cap":{"t":"ptr","v":"0x0e9c95e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9c9638"},"kids_end":{"t":"ptr","v":"0x0e9c9640"},"kids_cap":{"t":"ptr","v":"0x0e9c9640"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e9c9718"},"kids_end":{"t":"ptr","v":"0x0e9c971c"},"kids_cap":{"t":"ptr","v":"0x0e9c971c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fcbf8"},"kids_end":{"t":"ptr","v":"0x0e8fcc04"},"kids_cap":{"t":"ptr","v":"0x0e8fcc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fcb38"},"kids_end":{"t":"ptr","v":"0x0e8fcb44"},"kids_cap":{"t":"ptr","v":"0x0e8fcb44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fcb98"},"kids_end":{"t":"ptr","v":"0x0e8fcba8"},"kids_cap":{"t":"ptr","v":"0x0e8fcba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9c96a8"},"kids_end":{"t":"ptr","v":"0x0e9c96b0"},"kids_cap":{"t":"ptr","v":"0x0e9c96b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9c9588"},"kids_end":{"t":"ptr","v":"0x0e9c958c"},"kids_cap":{"t":"ptr","v":"0x0e9c958c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fcbe0"},"kids_end":{"t":"ptr","v":"0x0e8fcbec"},"kids_cap":{"t":"ptr","v":"0x0e8fcbec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9c96f8"},"kids_end":{"t":"ptr","v":"0x0e9c96fc"},"kids_cap":{"t":"ptr","v":"0x0e9c96fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9c9598"},"kids_end":{"t":"ptr","v":"0x0e9c959c"},"kids_cap":{"t":"ptr","v":"0x0e9c959c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e9c95e8"},"kids_end":{"t":"ptr","v":"0x0e9c95ec"},"kids_cap":{"t":"ptr","v":"0x0e9c95ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e9c96d8"},"kids_end":{"t":"ptr","v":"0x0e9c96e0"},"kids_cap":{"t":"ptr","v":"0x0e9c96e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9c9618"},"kids_end":{"t":"ptr","v":"0x0e9c961c"},"kids_cap":{"t":"ptr","v":"0x0e9c961c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9c9548"},"kids_end":{"t":"ptr","v":"0x0e9c9550"},"kids_cap":{"t":"ptr","v":"0x0e9c9550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fcd00"},"kids_end":{"t":"ptr","v":"0x0e8fcd0c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e9c95a8"},"kids_end":{"t":"ptr","v":"0x0e9c95ac"},"kids_cap":{"t":"ptr","v":"0x0e9c95ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9c9708"},"kids_end":{"t":"ptr","v":"0x0e9c9710"},"kids_cap":{"t":"ptr","v":"0x0e9c9710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e9c9558"},"kids_end":{"t":"ptr","v":"0x0e9c955c"},"kids_cap":{"t":"ptr","v":"0x0e9c955c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e9c9698"},"kids_end":{"t":"ptr","v":"0x0e9c96a0"},"kids_cap":{"t":"ptr","v":"0x0e9c96a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9c9648"},"kids_end":{"t":"ptr","v":"0x0e9c9650"},"kids_cap":{"t":"ptr","v":"0x0e9c9650"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e9c9738"},"kids_end":{"t":"ptr","v":"0x0e9c9740"},"kids_cap":{"t":"ptr","v":"0x0e9c9740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e9c9728"},"kids_end":{"t":"ptr","v":"0x0e9c9730"},"kids_cap":{"t":"ptr","v":"0x0e9c9730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e9c96b8"},"kids_end":{"t":"ptr","v":"0x0e9c96bc"},"kids_cap":{"t":"ptr","v":"0x0e9c96bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9c9568"},"kids_end":{"t":"ptr","v":"0x0e9c956c"},"kids_cap":{"t":"ptr","v":"0x0e9c956c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9c9578"},"kids_end":{"t":"ptr","v":"0x0e9c9580"},"kids_cap":{"t":"ptr","v":"0x0e9c9580"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9c95c8"},"kids_end":{"t":"ptr","v":"0x0e9c95d0"},"kids_cap":{"t":"ptr","v":"0x0e9c95d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9c95b8"},"kids_end":{"t":"ptr","v":"0x0e9c95bc"},"kids_cap":{"t":"ptr","v":"0x0e9c95bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e9c95f8"},"kids_end":{"t":"ptr","v":"0x0e9c95fc"},"kids_cap":{"t":"ptr","v":"0x0e9c95fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9c9608"},"kids_end":{"t":"ptr","v":"0x0e9c9610"},"kids_cap":{"t":"ptr","v":"0x0e9c9610"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9c9628"},"kids_end":{"t":"ptr","v":"0x0e9c962c"},"kids_cap":{"t":"ptr","v":"0x0e9c962c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e9c9658"},"kids_end":{"t":"ptr","v":"0x0e9c965c"},"kids_cap":{"t":"ptr","v":"0x0e9c965c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9c9668"},"kids_end":{"t":"ptr","v":"0x0e9c9670"},"kids_cap":{"t":"ptr","v":"0x0e9c9670"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9c9678"},"kids_end":{"t":"ptr","v":"0x0e9c967c"},"kids_cap":{"t":"ptr","v":"0x0e9c967c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e9c96c8"},"kids_end":{"t":"ptr","v":"0x0e9c96cc"},"kids_cap":{"t":"ptr","v":"0x0e9c96cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fcbb0"},"kids_end":{"t":"ptr","v":"0x0e8fcbbc"},"kids_cap":{"t":"ptr","v":"0x0e8fcbbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fcd78"},"kids_end":{"t":"ptr","v":"0x0e8fcd88"},"kids_cap":{"t":"ptr","v":"0x0e8fcd88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9c96e8"},"kids_end":{"t":"ptr","v":"0x0e9c96f0"},"kids_cap":{"t":"ptr","v":"0x0e9c96f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e9c9688"},"kids_end":{"t":"ptr","v":"0x0e9c9690"},"kids_cap":{"t":"ptr","v":"0x0e9c9690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9c98e8"},"kids_end":{"t":"ptr","v":"0x0e9c98ec"},"kids_cap":{"t":"ptr","v":"0x0e9c98ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9c97a8"},"kids_end":{"t":"ptr","v":"0x0e9c97b0"},"kids_cap":{"t":"ptr","v":"0x0e9c97b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e9c98b8"},"kids_end":{"t":"ptr","v":"0x0e9c98c0"},"kids_cap":{"t":"ptr","v":"0x0e9c98c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9c98a8"},"kids_end":{"t":"ptr","v":"0x0e9c98b0"},"kids_cap":{"t":"ptr","v":"0x0e9c98b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e9c98d8"},"kids_end":{"t":"ptr","v":"0x0e9c98dc"},"kids_cap":{"t":"ptr","v":"0x0e9c98dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e9c9748"},"kids_end":{"t":"ptr","v":"0x0e9c974c"},"kids_cap":{"t":"ptr","v":"0x0e9c974c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9c9788"},"kids_end":{"t":"ptr","v":"0x0e9c9790"},"kids_cap":{"t":"ptr","v":"0x0e9c9790"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e9c9758"},"kids_end":{"t":"ptr","v":"0x0e9c975c"},"kids_cap":{"t":"ptr","v":"0x0e9c975c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fcd60"},"kids_end":{"t":"ptr","v":"0x0e8fcd6c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9c98c8"},"kids_end":{"t":"ptr","v":"0x0e9c98cc"},"kids_cap":{"t":"ptr","v":"0x0e9c98cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d098"},"kids_end":{"t":"ptr","v":"0x0e88d0ac"},"kids_cap":{"t":"ptr","v":"0x0e88d0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e9c98f8"},"kids_end":{"t":"ptr","v":"0x0e9c98fc"},"kids_cap":{"t":"ptr","v":"0x0e9c98fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e9c9878"},"kids_end":{"t":"ptr","v":"0x0e9c987c"},"kids_cap":{"t":"ptr","v":"0x0e9c987c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e9c9838"},"kids_end":{"t":"ptr","v":"0x0e9c983c"},"kids_cap":{"t":"ptr","v":"0x0e9c983c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9c9908"},"kids_end":{"t":"ptr","v":"0x0e9c990c"},"kids_cap":{"t":"ptr","v":"0x0e9c990c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9c9818"},"kids_end":{"t":"ptr","v":"0x0e9c981c"},"kids_cap":{"t":"ptr","v":"0x0e9c981c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fcd30"},"kids_end":{"t":"ptr","v":"0x0e8fcd40"},"kids_cap":{"t":"ptr","v":"0x0e8fcd40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fcbc8"},"kids_end":{"t":"ptr","v":"0x0e8fcbd4"},"kids_cap":{"t":"ptr","v":"0x0e8fcbd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[217]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e840"},"tech_id":{"t":"i32","v":217},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9c9928"},"kids_end":{"t":"ptr","v":"0x0e9c992c"},"kids_cap":{"t":"ptr","v":"0x0e9c992c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9c97c8"},"kids_end":{"t":"ptr","v":"0x0e9c97cc"},"kids_cap":{"t":"ptr","v":"0x0e9c97cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fcc58"},"kids_end":{"t":"ptr","v":"0x0e8fcc68"},"kids_cap":{"t":"ptr","v":"0x0e8fcc68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9c9798"},"kids_end":{"t":"ptr","v":"0x0e9c97a0"},"kids_cap":{"t":"ptr","v":"0x0e9c97a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9c9938"},"kids_end":{"t":"ptr","v":"0x0e9c993c"},"kids_cap":{"t":"ptr","v":"0x0e9c993c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e9c9778"},"kids_end":{"t":"ptr","v":"0x0e9c977c"},"kids_cap":{"t":"ptr","v":"0x0e9c977c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fcd48"},"kids_end":{"t":"ptr","v":"0x0e8fcd54"},"kids_cap":{"t":"ptr","v":"0x0e8fcd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9c9768"},"kids_end":{"t":"ptr","v":"0x0e9c9770"},"kids_cap":{"t":"ptr","v":"0x0e9c9770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d398"},"kids_end":{"t":"ptr","v":"0x0e88d3ac"},"kids_cap":{"t":"ptr","v":"0x0e88d3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e9c9888"},"kids_end":{"t":"ptr","v":"0x0e9c988c"},"kids_cap":{"t":"ptr","v":"0x0e9c988c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e9c97b8"},"kids_end":{"t":"ptr","v":"0x0e9c97bc"},"kids_cap":{"t":"ptr","v":"0x0e9c97bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9c9898"},"kids_end":{"t":"ptr","v":"0x0e9c989c"},"kids_cap":{"t":"ptr","v":"0x0e9c989c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e9c97d8"},"kids_end":{"t":"ptr","v":"0x0e9c97dc"},"kids_cap":{"t":"ptr","v":"0x0e9c97dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9c97e8"},"kids_end":{"t":"ptr","v":"0x0e9c97ec"},"kids_cap":{"t":"ptr","v":"0x0e9c97ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9c97f8"},"kids_end":{"t":"ptr","v":"0x0e9c9800"},"kids_cap":{"t":"ptr","v":"0x0e9c9800"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d078"},"kids_end":{"t":"ptr","v":"0x0e88d08c"},"kids_cap":{"t":"ptr","v":"0x0e88d08c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e9c9918"},"kids_end":{"t":"ptr","v":"0x0e9c991c"},"kids_cap":{"t":"ptr","v":"0x0e9c991c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9c9848"},"kids_end":{"t":"ptr","v":"0x0e9c984c"},"kids_cap":{"t":"ptr","v":"0x0e9c984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e9c9868"},"kids_end":{"t":"ptr","v":"0x0e9c986c"},"kids_cap":{"t":"ptr","v":"0x0e9c986c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9c9808"},"kids_end":{"t":"ptr","v":"0x0e9c9810"},"kids_cap":{"t":"ptr","v":"0x0e9c9810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9c9858"},"kids_end":{"t":"ptr","v":"0x0e9c9860"},"kids_cap":{"t":"ptr","v":"0x0e9c9860"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e9c9828"},"kids_end":{"t":"ptr","v":"0x0e9c9830"},"kids_cap":{"t":"ptr","v":"0x0e9c9830"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9c9e78"},"kids_end":{"t":"ptr","v":"0x0e9c9e7c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[253]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697168"},"tech_id":{"t":"i32","v":253},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9c9e88"},"kids_end":{"t":"ptr","v":"0x0e9c9e8c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fcc10"},"kids_end":{"t":"ptr","v":"0x0e8fcc1c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fca90"},"kids_end":{"t":"ptr","v":"0x0e8fca9c"},"kids_cap":{"t":"ptr","v":"0x0e8fca9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fcc70"},"kids_end":{"t":"ptr","v":"0x0e8fcc7c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fcaa8"},"kids_end":{"t":"ptr","v":"0x0e8fcab4"},"kids_cap":{"t":"ptr","v":"0x0e8fcab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fcc88"},"kids_end":{"t":"ptr","v":"0x0e8fcc94"},"kids_cap":{"t":"ptr","v":"0x0e8fcc94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[269]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699c10"},"tech_id":{"t":"i32","v":269},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d178"},"kids_end":{"t":"ptr","v":"0x0e88d190"},"kids_cap":{"t":"ptr","v":"0x0e88d190"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":80000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9ca0c8"},"kids_end":{"t":"ptr","v":"0x0e9ca0d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca0d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9ca088"},"kids_end":{"t":"ptr","v":"0x0e9ca090"},"kids_cap":{"t":"ptr","v":"0x0e9ca090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9c9f78"},"kids_end":{"t":"ptr","v":"0x0e9c9f80"},"kids_cap":{"t":"ptr","v":"0x0e9c9f80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e9c9f98"},"kids_end":{"t":"ptr","v":"0x0e9c9fa0"},"kids_cap":{"t":"ptr","v":"0x0e9c9fa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9c9fa8"},"kids_end":{"t":"ptr","v":"0x0e9c9fac"},"kids_cap":{"t":"ptr","v":"0x0e9c9fac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9ca098"},"kids_end":{"t":"ptr","v":"0x0e9ca09c"},"kids_cap":{"t":"ptr","v":"0x0e9ca09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca0e8"},"kids_end":{"t":"ptr","v":"0x0e9ca0ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9c9fe8"},"kids_end":{"t":"ptr","v":"0x0e9c9fec"},"kids_cap":{"t":"ptr","v":"0x0e9c9fec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca128"},"kids_end":{"t":"ptr","v":"0x0e9ca12c"},"kids_cap":{"t":"ptr","v":"0x0e9ca12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca008"},"kids_end":{"t":"ptr","v":"0x0e9ca00c"},"kids_cap":{"t":"ptr","v":"0x0e9ca00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca0f8"},"kids_end":{"t":"ptr","v":"0x0e9ca0fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9ca0d8"},"kids_end":{"t":"ptr","v":"0x0e9ca0dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9ca058"},"kids_end":{"t":"ptr","v":"0x0e9ca05c"},"kids_cap":{"t":"ptr","v":"0x0e9ca05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9c9fc8"},"kids_end":{"t":"ptr","v":"0x0e9c9fcc"},"kids_cap":{"t":"ptr","v":"0x0e9c9fcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9ca018"},"kids_end":{"t":"ptr","v":"0x0e9ca01c"},"kids_cap":{"t":"ptr","v":"0x0e9ca01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["player","tree_header"],"undeclared":[],"n":0}} +{"ts":445173614,"hook":"Game::TechTree::ProcessResearch","mode":"compare","call_id":11,"thread":1412,"depth":0,"args":[{"t":"ptr","v":"0x0e93bea0","n":"tree"},{"t":"ptr","v":"0x0e90c540","n":"owner"},{"t":"i32","v":2,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e96ad78","n":"rng"},{"t":"i32","v":375,"n":"rng_left_in"},{"t":"list","v":[{"t":"struct","v":{"tech_id":{"t":"i32","v":9},"points":{"t":"i32","v":0}}}],"n":"alloc"},{"t":"i32","v":0,"n":"overbudget_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":375},"next_index":{"t":"i64","v":249}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":375},"next_index":{"t":"i64","v":249}}}},"overbudget":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9caf28"},"kids_end":{"t":"ptr","v":"0x0e9caf2c"},"kids_cap":{"t":"ptr","v":"0x0e9caf2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9caf28"},"kids_end":{"t":"ptr","v":"0x0e9caf2c"},"kids_cap":{"t":"ptr","v":"0x0e9caf2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cae68"},"kids_end":{"t":"ptr","v":"0x0e9cae6c"},"kids_cap":{"t":"ptr","v":"0x0e9cae6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cae68"},"kids_end":{"t":"ptr","v":"0x0e9cae6c"},"kids_cap":{"t":"ptr","v":"0x0e9cae6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cadf8"},"kids_end":{"t":"ptr","v":"0x0e9cadfc"},"kids_cap":{"t":"ptr","v":"0x0e9cadfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cadf8"},"kids_end":{"t":"ptr","v":"0x0e9cadfc"},"kids_cap":{"t":"ptr","v":"0x0e9cadfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9caea8"},"kids_end":{"t":"ptr","v":"0x0e9caeb0"},"kids_cap":{"t":"ptr","v":"0x0e9caeb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9caea8"},"kids_end":{"t":"ptr","v":"0x0e9caeb0"},"kids_cap":{"t":"ptr","v":"0x0e9caeb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9caf38"},"kids_end":{"t":"ptr","v":"0x0e9caf40"},"kids_cap":{"t":"ptr","v":"0x0e9caf40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9caf38"},"kids_end":{"t":"ptr","v":"0x0e9caf40"},"kids_cap":{"t":"ptr","v":"0x0e9caf40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cad68"},"kids_end":{"t":"ptr","v":"0x0e9cad6c"},"kids_cap":{"t":"ptr","v":"0x0e9cad6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cad68"},"kids_end":{"t":"ptr","v":"0x0e9cad6c"},"kids_cap":{"t":"ptr","v":"0x0e9cad6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9caeb8"},"kids_end":{"t":"ptr","v":"0x0e9caebc"},"kids_cap":{"t":"ptr","v":"0x0e9caebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9caeb8"},"kids_end":{"t":"ptr","v":"0x0e9caebc"},"kids_cap":{"t":"ptr","v":"0x0e9caebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9caef8"},"kids_end":{"t":"ptr","v":"0x0e9caefc"},"kids_cap":{"t":"ptr","v":"0x0e9caefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9caef8"},"kids_end":{"t":"ptr","v":"0x0e9caefc"},"kids_cap":{"t":"ptr","v":"0x0e9caefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe0e0"},"kids_end":{"t":"ptr","v":"0x0e8fe0ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe0e0"},"kids_end":{"t":"ptr","v":"0x0e8fe0ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cad88"},"kids_end":{"t":"ptr","v":"0x0e9cad90"},"kids_cap":{"t":"ptr","v":"0x0e9cad90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cad88"},"kids_end":{"t":"ptr","v":"0x0e9cad90"},"kids_cap":{"t":"ptr","v":"0x0e9cad90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe038"},"kids_end":{"t":"ptr","v":"0x0e8fe048"},"kids_cap":{"t":"ptr","v":"0x0e8fe048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe038"},"kids_end":{"t":"ptr","v":"0x0e8fe048"},"kids_cap":{"t":"ptr","v":"0x0e8fe048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cadb8"},"kids_end":{"t":"ptr","v":"0x0e9cadbc"},"kids_cap":{"t":"ptr","v":"0x0e9cadbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cadb8"},"kids_end":{"t":"ptr","v":"0x0e9cadbc"},"kids_cap":{"t":"ptr","v":"0x0e9cadbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cae98"},"kids_end":{"t":"ptr","v":"0x0e9cae9c"},"kids_cap":{"t":"ptr","v":"0x0e9cae9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cae98"},"kids_end":{"t":"ptr","v":"0x0e9cae9c"},"kids_cap":{"t":"ptr","v":"0x0e9cae9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fdf90"},"kids_end":{"t":"ptr","v":"0x0e8fdf9c"},"kids_cap":{"t":"ptr","v":"0x0e8fdf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fdf90"},"kids_end":{"t":"ptr","v":"0x0e8fdf9c"},"kids_cap":{"t":"ptr","v":"0x0e8fdf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9caec8"},"kids_end":{"t":"ptr","v":"0x0e9caecc"},"kids_cap":{"t":"ptr","v":"0x0e9caecc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9caec8"},"kids_end":{"t":"ptr","v":"0x0e9caecc"},"kids_cap":{"t":"ptr","v":"0x0e9caecc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cae08"},"kids_end":{"t":"ptr","v":"0x0e9cae0c"},"kids_cap":{"t":"ptr","v":"0x0e9cae0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cae08"},"kids_end":{"t":"ptr","v":"0x0e9cae0c"},"kids_cap":{"t":"ptr","v":"0x0e9cae0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9caed8"},"kids_end":{"t":"ptr","v":"0x0e9caedc"},"kids_cap":{"t":"ptr","v":"0x0e9caedc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9caed8"},"kids_end":{"t":"ptr","v":"0x0e9caedc"},"kids_cap":{"t":"ptr","v":"0x0e9caedc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fdfd8"},"kids_end":{"t":"ptr","v":"0x0e8fdfe4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fdfd8"},"kids_end":{"t":"ptr","v":"0x0e8fdfe4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe158"},"kids_end":{"t":"ptr","v":"0x0e8fe168"},"kids_cap":{"t":"ptr","v":"0x0e8fe168"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe158"},"kids_end":{"t":"ptr","v":"0x0e8fe168"},"kids_cap":{"t":"ptr","v":"0x0e8fe168"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cae18"},"kids_end":{"t":"ptr","v":"0x0e9cae1c"},"kids_cap":{"t":"ptr","v":"0x0e9cae1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cae18"},"kids_end":{"t":"ptr","v":"0x0e9cae1c"},"kids_cap":{"t":"ptr","v":"0x0e9cae1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cae28"},"kids_end":{"t":"ptr","v":"0x0e9cae2c"},"kids_cap":{"t":"ptr","v":"0x0e9cae2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cae28"},"kids_end":{"t":"ptr","v":"0x0e9cae2c"},"kids_cap":{"t":"ptr","v":"0x0e9cae2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb068"},"kids_end":{"t":"ptr","v":"0x0e9cb06c"},"kids_cap":{"t":"ptr","v":"0x0e9cb06c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb068"},"kids_end":{"t":"ptr","v":"0x0e9cb06c"},"kids_cap":{"t":"ptr","v":"0x0e9cb06c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb0d8"},"kids_end":{"t":"ptr","v":"0x0e9cb0dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb0d8"},"kids_end":{"t":"ptr","v":"0x0e9cb0dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9caf48"},"kids_end":{"t":"ptr","v":"0x0e9caf50"},"kids_cap":{"t":"ptr","v":"0x0e9caf50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9caf48"},"kids_end":{"t":"ptr","v":"0x0e9caf50"},"kids_cap":{"t":"ptr","v":"0x0e9caf50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe098"},"kids_end":{"t":"ptr","v":"0x0e8fe0a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe098"},"kids_end":{"t":"ptr","v":"0x0e8fe0a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb088"},"kids_end":{"t":"ptr","v":"0x0e9cb090"},"kids_cap":{"t":"ptr","v":"0x0e9cb090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb088"},"kids_end":{"t":"ptr","v":"0x0e9cb090"},"kids_cap":{"t":"ptr","v":"0x0e9cb090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fdfa8"},"kids_end":{"t":"ptr","v":"0x0e8fdfb4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fdfa8"},"kids_end":{"t":"ptr","v":"0x0e8fdfb4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe1a0"},"kids_end":{"t":"ptr","v":"0x0e8fe1ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe1a0"},"kids_end":{"t":"ptr","v":"0x0e8fe1ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe008"},"kids_end":{"t":"ptr","v":"0x0e8fe014"},"kids_cap":{"t":"ptr","v":"0x0e8fe014"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe008"},"kids_end":{"t":"ptr","v":"0x0e8fe014"},"kids_cap":{"t":"ptr","v":"0x0e8fe014"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9caf98"},"kids_end":{"t":"ptr","v":"0x0e9caf9c"},"kids_cap":{"t":"ptr","v":"0x0e9caf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9caf98"},"kids_end":{"t":"ptr","v":"0x0e9caf9c"},"kids_cap":{"t":"ptr","v":"0x0e9caf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cafd8"},"kids_end":{"t":"ptr","v":"0x0e9cafdc"},"kids_cap":{"t":"ptr","v":"0x0e9cafdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cafd8"},"kids_end":{"t":"ptr","v":"0x0e9cafdc"},"kids_cap":{"t":"ptr","v":"0x0e9cafdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe050"},"kids_end":{"t":"ptr","v":"0x0e8fe05c"},"kids_cap":{"t":"ptr","v":"0x0e8fe05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe050"},"kids_end":{"t":"ptr","v":"0x0e8fe05c"},"kids_cap":{"t":"ptr","v":"0x0e8fe05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9caf58"},"kids_end":{"t":"ptr","v":"0x0e9caf5c"},"kids_cap":{"t":"ptr","v":"0x0e9caf5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9caf58"},"kids_end":{"t":"ptr","v":"0x0e9caf5c"},"kids_cap":{"t":"ptr","v":"0x0e9caf5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9cb0e8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9cb0e8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb0f8"},"kids_end":{"t":"ptr","v":"0x0e9cb0fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb0f8"},"kids_end":{"t":"ptr","v":"0x0e9cb0fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9caf68"},"kids_end":{"t":"ptr","v":"0x0e9caf6c"},"kids_cap":{"t":"ptr","v":"0x0e9caf6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9caf68"},"kids_end":{"t":"ptr","v":"0x0e9caf6c"},"kids_cap":{"t":"ptr","v":"0x0e9caf6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cafc8"},"kids_end":{"t":"ptr","v":"0x0e9cafcc"},"kids_cap":{"t":"ptr","v":"0x0e9cafcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cafc8"},"kids_end":{"t":"ptr","v":"0x0e9cafcc"},"kids_cap":{"t":"ptr","v":"0x0e9cafcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe1d0"},"kids_end":{"t":"ptr","v":"0x0e8fe1dc"},"kids_cap":{"t":"ptr","v":"0x0e8fe1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe1d0"},"kids_end":{"t":"ptr","v":"0x0e8fe1dc"},"kids_cap":{"t":"ptr","v":"0x0e8fe1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9caf78"},"kids_end":{"t":"ptr","v":"0x0e9caf7c"},"kids_cap":{"t":"ptr","v":"0x0e9caf7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9caf78"},"kids_end":{"t":"ptr","v":"0x0e9caf7c"},"kids_cap":{"t":"ptr","v":"0x0e9caf7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb118"},"kids_end":{"t":"ptr","v":"0x0e9cb11c"},"kids_cap":{"t":"ptr","v":"0x0e9cb11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb118"},"kids_end":{"t":"ptr","v":"0x0e9cb11c"},"kids_cap":{"t":"ptr","v":"0x0e9cb11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb108"},"kids_end":{"t":"ptr","v":"0x0e9cb10c"},"kids_cap":{"t":"ptr","v":"0x0e9cb10c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb108"},"kids_end":{"t":"ptr","v":"0x0e9cb10c"},"kids_cap":{"t":"ptr","v":"0x0e9cb10c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb0c8"},"kids_end":{"t":"ptr","v":"0x0e9cb0cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb0c8"},"kids_end":{"t":"ptr","v":"0x0e9cb0cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb098"},"kids_end":{"t":"ptr","v":"0x0e9cb09c"},"kids_cap":{"t":"ptr","v":"0x0e9cb09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb098"},"kids_end":{"t":"ptr","v":"0x0e9cb09c"},"kids_cap":{"t":"ptr","v":"0x0e9cb09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb128"},"kids_end":{"t":"ptr","v":"0x0e9cb12c"},"kids_cap":{"t":"ptr","v":"0x0e9cb12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb128"},"kids_end":{"t":"ptr","v":"0x0e9cb12c"},"kids_cap":{"t":"ptr","v":"0x0e9cb12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9caf88"},"kids_end":{"t":"ptr","v":"0x0e9caf8c"},"kids_cap":{"t":"ptr","v":"0x0e9caf8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9caf88"},"kids_end":{"t":"ptr","v":"0x0e9caf8c"},"kids_cap":{"t":"ptr","v":"0x0e9caf8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe1b8"},"kids_end":{"t":"ptr","v":"0x0e8fe1c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe1b8"},"kids_end":{"t":"ptr","v":"0x0e8fe1c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fdfc0"},"kids_end":{"t":"ptr","v":"0x0e8fdfcc"},"kids_cap":{"t":"ptr","v":"0x0e8fdfcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fdfc0"},"kids_end":{"t":"ptr","v":"0x0e8fdfcc"},"kids_cap":{"t":"ptr","v":"0x0e8fdfcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb078"},"kids_end":{"t":"ptr","v":"0x0e9cb07c"},"kids_cap":{"t":"ptr","v":"0x0e9cb07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb078"},"kids_end":{"t":"ptr","v":"0x0e9cb07c"},"kids_cap":{"t":"ptr","v":"0x0e9cb07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb008"},"kids_end":{"t":"ptr","v":"0x0e9cb010"},"kids_cap":{"t":"ptr","v":"0x0e9cb010"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb008"},"kids_end":{"t":"ptr","v":"0x0e9cb010"},"kids_cap":{"t":"ptr","v":"0x0e9cb010"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cafa8"},"kids_end":{"t":"ptr","v":"0x0e9cafb0"},"kids_cap":{"t":"ptr","v":"0x0e9cafb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cafa8"},"kids_end":{"t":"ptr","v":"0x0e9cafb0"},"kids_cap":{"t":"ptr","v":"0x0e9cafb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88d218"},"kids_end":{"t":"ptr","v":"0x0e88d22c"},"kids_cap":{"t":"ptr","v":"0x0e88d22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88d218"},"kids_end":{"t":"ptr","v":"0x0e88d22c"},"kids_cap":{"t":"ptr","v":"0x0e88d22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fdff0"},"kids_end":{"t":"ptr","v":"0x0e8fdffc"},"kids_cap":{"t":"ptr","v":"0x0e8fdffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fdff0"},"kids_end":{"t":"ptr","v":"0x0e8fdffc"},"kids_cap":{"t":"ptr","v":"0x0e8fdffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969f00"},"kids_end":{"t":"ptr","v":"0x0e969f24"},"kids_cap":{"t":"ptr","v":"0x0e969f24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969f00"},"kids_end":{"t":"ptr","v":"0x0e969f24"},"kids_cap":{"t":"ptr","v":"0x0e969f24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9cafe8"},"kids_end":{"t":"ptr","v":"0x0e9cafec"},"kids_cap":{"t":"ptr","v":"0x0e9cafec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9cafe8"},"kids_end":{"t":"ptr","v":"0x0e9cafec"},"kids_cap":{"t":"ptr","v":"0x0e9cafec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9cafb8"},"kids_end":{"t":"ptr","v":"0x0e9cafbc"},"kids_cap":{"t":"ptr","v":"0x0e9cafbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9cafb8"},"kids_end":{"t":"ptr","v":"0x0e9cafbc"},"kids_cap":{"t":"ptr","v":"0x0e9cafbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fe110"},"kids_end":{"t":"ptr","v":"0x0e8fe11c"},"kids_cap":{"t":"ptr","v":"0x0e8fe11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fe110"},"kids_end":{"t":"ptr","v":"0x0e8fe11c"},"kids_cap":{"t":"ptr","v":"0x0e8fe11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb138"},"kids_end":{"t":"ptr","v":"0x0e9cb13c"},"kids_cap":{"t":"ptr","v":"0x0e9cb13c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb138"},"kids_end":{"t":"ptr","v":"0x0e9cb13c"},"kids_cap":{"t":"ptr","v":"0x0e9cb13c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9caff8"},"kids_end":{"t":"ptr","v":"0x0e9caffc"},"kids_cap":{"t":"ptr","v":"0x0e9caffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9caff8"},"kids_end":{"t":"ptr","v":"0x0e9caffc"},"kids_cap":{"t":"ptr","v":"0x0e9caffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb018"},"kids_end":{"t":"ptr","v":"0x0e9cb01c"},"kids_cap":{"t":"ptr","v":"0x0e9cb01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb018"},"kids_end":{"t":"ptr","v":"0x0e9cb01c"},"kids_cap":{"t":"ptr","v":"0x0e9cb01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb0a8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb0a8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb028"},"kids_end":{"t":"ptr","v":"0x0e9cb02c"},"kids_cap":{"t":"ptr","v":"0x0e9cb02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb028"},"kids_end":{"t":"ptr","v":"0x0e9cb02c"},"kids_cap":{"t":"ptr","v":"0x0e9cb02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb038"},"kids_end":{"t":"ptr","v":"0x0e9cb040"},"kids_cap":{"t":"ptr","v":"0x0e9cb040"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb038"},"kids_end":{"t":"ptr","v":"0x0e9cb040"},"kids_cap":{"t":"ptr","v":"0x0e9cb040"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb048"},"kids_end":{"t":"ptr","v":"0x0e9cb050"},"kids_cap":{"t":"ptr","v":"0x0e9cb050"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb048"},"kids_end":{"t":"ptr","v":"0x0e9cb050"},"kids_cap":{"t":"ptr","v":"0x0e9cb050"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d358"},"kids_end":{"t":"ptr","v":"0x0e88d36c"},"kids_cap":{"t":"ptr","v":"0x0e88d36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d358"},"kids_end":{"t":"ptr","v":"0x0e88d36c"},"kids_cap":{"t":"ptr","v":"0x0e88d36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe218"},"kids_end":{"t":"ptr","v":"0x0e8fe224"},"kids_cap":{"t":"ptr","v":"0x0e8fe224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe218"},"kids_end":{"t":"ptr","v":"0x0e8fe224"},"kids_cap":{"t":"ptr","v":"0x0e8fe224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb058"},"kids_end":{"t":"ptr","v":"0x0e9cb05c"},"kids_cap":{"t":"ptr","v":"0x0e9cb05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb058"},"kids_end":{"t":"ptr","v":"0x0e9cb05c"},"kids_cap":{"t":"ptr","v":"0x0e9cb05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb0b8"},"kids_end":{"t":"ptr","v":"0x0e9cb0bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb0b8"},"kids_end":{"t":"ptr","v":"0x0e9cb0bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e92edd8"},"kids_end":{"t":"ptr","v":"0x0e92eddc"},"kids_cap":{"t":"ptr","v":"0x0e92eddc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e92edd8"},"kids_end":{"t":"ptr","v":"0x0e92eddc"},"kids_cap":{"t":"ptr","v":"0x0e92eddc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e92ed78"},"kids_end":{"t":"ptr","v":"0x0e92ed7c"},"kids_cap":{"t":"ptr","v":"0x0e92ed7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e92ed78"},"kids_end":{"t":"ptr","v":"0x0e92ed7c"},"kids_cap":{"t":"ptr","v":"0x0e92ed7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e92ede8"},"kids_end":{"t":"ptr","v":"0x0e92edf0"},"kids_cap":{"t":"ptr","v":"0x0e92edf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e92ede8"},"kids_end":{"t":"ptr","v":"0x0e92edf0"},"kids_cap":{"t":"ptr","v":"0x0e92edf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe020"},"kids_end":{"t":"ptr","v":"0x0e8fe02c"},"kids_cap":{"t":"ptr","v":"0x0e8fe02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe020"},"kids_end":{"t":"ptr","v":"0x0e8fe02c"},"kids_cap":{"t":"ptr","v":"0x0e8fe02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e92edb8"},"kids_end":{"t":"ptr","v":"0x0e92edc0"},"kids_cap":{"t":"ptr","v":"0x0e92edc0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e92edb8"},"kids_end":{"t":"ptr","v":"0x0e92edc0"},"kids_cap":{"t":"ptr","v":"0x0e92edc0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e92ee48"},"kids_end":{"t":"ptr","v":"0x0e92ee50"},"kids_cap":{"t":"ptr","v":"0x0e92ee50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e92ee48"},"kids_end":{"t":"ptr","v":"0x0e92ee50"},"kids_cap":{"t":"ptr","v":"0x0e92ee50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e92eeb8"},"kids_end":{"t":"ptr","v":"0x0e92eebc"},"kids_cap":{"t":"ptr","v":"0x0e92eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e92eeb8"},"kids_end":{"t":"ptr","v":"0x0e92eebc"},"kids_cap":{"t":"ptr","v":"0x0e92eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe0c8"},"kids_end":{"t":"ptr","v":"0x0e8fe0d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe0c8"},"kids_end":{"t":"ptr","v":"0x0e8fe0d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fe0f8"},"kids_end":{"t":"ptr","v":"0x0e8fe104"},"kids_cap":{"t":"ptr","v":"0x0e8fe104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fe0f8"},"kids_end":{"t":"ptr","v":"0x0e8fe104"},"kids_cap":{"t":"ptr","v":"0x0e8fe104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe350"},"kids_end":{"t":"ptr","v":"0x0e8fe360"},"kids_cap":{"t":"ptr","v":"0x0e8fe360"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe350"},"kids_end":{"t":"ptr","v":"0x0e8fe360"},"kids_cap":{"t":"ptr","v":"0x0e8fe360"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e92eec8"},"kids_end":{"t":"ptr","v":"0x0e92eed0"},"kids_cap":{"t":"ptr","v":"0x0e92eed0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e92eec8"},"kids_end":{"t":"ptr","v":"0x0e92eed0"},"kids_cap":{"t":"ptr","v":"0x0e92eed0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e92ee18"},"kids_end":{"t":"ptr","v":"0x0e92ee1c"},"kids_cap":{"t":"ptr","v":"0x0e92ee1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e92ee18"},"kids_end":{"t":"ptr","v":"0x0e92ee1c"},"kids_cap":{"t":"ptr","v":"0x0e92ee1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe380"},"kids_end":{"t":"ptr","v":"0x0e8fe38c"},"kids_cap":{"t":"ptr","v":"0x0e8fe38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe380"},"kids_end":{"t":"ptr","v":"0x0e8fe38c"},"kids_cap":{"t":"ptr","v":"0x0e8fe38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e92ee58"},"kids_end":{"t":"ptr","v":"0x0e92ee5c"},"kids_cap":{"t":"ptr","v":"0x0e92ee5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e92ee58"},"kids_end":{"t":"ptr","v":"0x0e92ee5c"},"kids_cap":{"t":"ptr","v":"0x0e92ee5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e92edc8"},"kids_end":{"t":"ptr","v":"0x0e92edcc"},"kids_cap":{"t":"ptr","v":"0x0e92edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e92edc8"},"kids_end":{"t":"ptr","v":"0x0e92edcc"},"kids_cap":{"t":"ptr","v":"0x0e92edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e92ee28"},"kids_end":{"t":"ptr","v":"0x0e92ee2c"},"kids_cap":{"t":"ptr","v":"0x0e92ee2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e92ee28"},"kids_end":{"t":"ptr","v":"0x0e92ee2c"},"kids_cap":{"t":"ptr","v":"0x0e92ee2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e92ece8"},"kids_end":{"t":"ptr","v":"0x0e92ecec"},"kids_cap":{"t":"ptr","v":"0x0e92ecec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e92ece8"},"kids_end":{"t":"ptr","v":"0x0e92ecec"},"kids_cap":{"t":"ptr","v":"0x0e92ecec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe3e0"},"kids_end":{"t":"ptr","v":"0x0e8fe3ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe3e0"},"kids_end":{"t":"ptr","v":"0x0e8fe3ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e92ed38"},"kids_end":{"t":"ptr","v":"0x0e92ed3c"},"kids_cap":{"t":"ptr","v":"0x0e92ed3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e92ed38"},"kids_end":{"t":"ptr","v":"0x0e92ed3c"},"kids_cap":{"t":"ptr","v":"0x0e92ed3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e92ed58"},"kids_end":{"t":"ptr","v":"0x0e92ed60"},"kids_cap":{"t":"ptr","v":"0x0e92ed60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e92ed58"},"kids_end":{"t":"ptr","v":"0x0e92ed60"},"kids_cap":{"t":"ptr","v":"0x0e92ed60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fe6f8"},"kids_end":{"t":"ptr","v":"0x0e8fe704"},"kids_cap":{"t":"ptr","v":"0x0e8fe704"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fe6f8"},"kids_end":{"t":"ptr","v":"0x0e8fe704"},"kids_cap":{"t":"ptr","v":"0x0e8fe704"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e92edf8"},"kids_end":{"t":"ptr","v":"0x0e92edfc"},"kids_cap":{"t":"ptr","v":"0x0e92edfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e92edf8"},"kids_end":{"t":"ptr","v":"0x0e92edfc"},"kids_cap":{"t":"ptr","v":"0x0e92edfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e92ee38"},"kids_end":{"t":"ptr","v":"0x0e92ee40"},"kids_cap":{"t":"ptr","v":"0x0e92ee40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e92ee38"},"kids_end":{"t":"ptr","v":"0x0e92ee40"},"kids_cap":{"t":"ptr","v":"0x0e92ee40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e92ee08"},"kids_end":{"t":"ptr","v":"0x0e92ee0c"},"kids_cap":{"t":"ptr","v":"0x0e92ee0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e92ee08"},"kids_end":{"t":"ptr","v":"0x0e92ee0c"},"kids_cap":{"t":"ptr","v":"0x0e92ee0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e92ee68"},"kids_end":{"t":"ptr","v":"0x0e92ee70"},"kids_cap":{"t":"ptr","v":"0x0e92ee70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e92ee68"},"kids_end":{"t":"ptr","v":"0x0e92ee70"},"kids_cap":{"t":"ptr","v":"0x0e92ee70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e92ee78"},"kids_end":{"t":"ptr","v":"0x0e92ee80"},"kids_cap":{"t":"ptr","v":"0x0e92ee80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e92ee78"},"kids_end":{"t":"ptr","v":"0x0e92ee80"},"kids_cap":{"t":"ptr","v":"0x0e92ee80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e92ed48"},"kids_end":{"t":"ptr","v":"0x0e92ed50"},"kids_cap":{"t":"ptr","v":"0x0e92ed50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e92ed48"},"kids_end":{"t":"ptr","v":"0x0e92ed50"},"kids_cap":{"t":"ptr","v":"0x0e92ed50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e92eed8"},"kids_end":{"t":"ptr","v":"0x0e92eee0"},"kids_cap":{"t":"ptr","v":"0x0e92eee0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e92eed8"},"kids_end":{"t":"ptr","v":"0x0e92eee0"},"kids_cap":{"t":"ptr","v":"0x0e92eee0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e92ed88"},"kids_end":{"t":"ptr","v":"0x0e92ed8c"},"kids_cap":{"t":"ptr","v":"0x0e92ed8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e92ed88"},"kids_end":{"t":"ptr","v":"0x0e92ed8c"},"kids_cap":{"t":"ptr","v":"0x0e92ed8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e92ed68"},"kids_end":{"t":"ptr","v":"0x0e92ed6c"},"kids_cap":{"t":"ptr","v":"0x0e92ed6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e92ed68"},"kids_end":{"t":"ptr","v":"0x0e92ed6c"},"kids_cap":{"t":"ptr","v":"0x0e92ed6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e92ecf8"},"kids_end":{"t":"ptr","v":"0x0e92ed00"},"kids_cap":{"t":"ptr","v":"0x0e92ed00"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e92ecf8"},"kids_end":{"t":"ptr","v":"0x0e92ed00"},"kids_cap":{"t":"ptr","v":"0x0e92ed00"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e92ed08"},"kids_end":{"t":"ptr","v":"0x0e92ed10"},"kids_cap":{"t":"ptr","v":"0x0e92ed10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e92ed08"},"kids_end":{"t":"ptr","v":"0x0e92ed10"},"kids_cap":{"t":"ptr","v":"0x0e92ed10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e92ee98"},"kids_end":{"t":"ptr","v":"0x0e92ee9c"},"kids_cap":{"t":"ptr","v":"0x0e92ee9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e92ee98"},"kids_end":{"t":"ptr","v":"0x0e92ee9c"},"kids_cap":{"t":"ptr","v":"0x0e92ee9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e92ed18"},"kids_end":{"t":"ptr","v":"0x0e92ed1c"},"kids_cap":{"t":"ptr","v":"0x0e92ed1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e92ed18"},"kids_end":{"t":"ptr","v":"0x0e92ed1c"},"kids_cap":{"t":"ptr","v":"0x0e92ed1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e92ee88"},"kids_end":{"t":"ptr","v":"0x0e92ee90"},"kids_cap":{"t":"ptr","v":"0x0e92ee90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e92ee88"},"kids_end":{"t":"ptr","v":"0x0e92ee90"},"kids_cap":{"t":"ptr","v":"0x0e92ee90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e92eea8"},"kids_end":{"t":"ptr","v":"0x0e92eeac"},"kids_cap":{"t":"ptr","v":"0x0e92eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e92eea8"},"kids_end":{"t":"ptr","v":"0x0e92eeac"},"kids_cap":{"t":"ptr","v":"0x0e92eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e92ed28"},"kids_end":{"t":"ptr","v":"0x0e92ed2c"},"kids_cap":{"t":"ptr","v":"0x0e92ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e92ed28"},"kids_end":{"t":"ptr","v":"0x0e92ed2c"},"kids_cap":{"t":"ptr","v":"0x0e92ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e92ed98"},"kids_end":{"t":"ptr","v":"0x0e92eda0"},"kids_cap":{"t":"ptr","v":"0x0e92eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e92ed98"},"kids_end":{"t":"ptr","v":"0x0e92eda0"},"kids_cap":{"t":"ptr","v":"0x0e92eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e92eda8"},"kids_end":{"t":"ptr","v":"0x0e92edac"},"kids_cap":{"t":"ptr","v":"0x0e92edac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e92eda8"},"kids_end":{"t":"ptr","v":"0x0e92edac"},"kids_cap":{"t":"ptr","v":"0x0e92edac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e92f7a8"},"kids_end":{"t":"ptr","v":"0x0e92f7ac"},"kids_cap":{"t":"ptr","v":"0x0e92f7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e92f7a8"},"kids_end":{"t":"ptr","v":"0x0e92f7ac"},"kids_cap":{"t":"ptr","v":"0x0e92f7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fe6c8"},"kids_end":{"t":"ptr","v":"0x0e8fe6d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fe6c8"},"kids_end":{"t":"ptr","v":"0x0e8fe6d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fe620"},"kids_end":{"t":"ptr","v":"0x0e8fe630"},"kids_cap":{"t":"ptr","v":"0x0e8fe630"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fe620"},"kids_end":{"t":"ptr","v":"0x0e8fe630"},"kids_cap":{"t":"ptr","v":"0x0e8fe630"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e92f6e8"},"kids_end":{"t":"ptr","v":"0x0e92f6f0"},"kids_cap":{"t":"ptr","v":"0x0e92f6f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e92f6e8"},"kids_end":{"t":"ptr","v":"0x0e92f6f0"},"kids_cap":{"t":"ptr","v":"0x0e92f6f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e92f7b8"},"kids_end":{"t":"ptr","v":"0x0e92f7c0"},"kids_cap":{"t":"ptr","v":"0x0e92f7c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e92f7b8"},"kids_end":{"t":"ptr","v":"0x0e92f7c0"},"kids_cap":{"t":"ptr","v":"0x0e92f7c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e92f818"},"kids_end":{"t":"ptr","v":"0x0e92f81c"},"kids_cap":{"t":"ptr","v":"0x0e92f81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e92f818"},"kids_end":{"t":"ptr","v":"0x0e92f81c"},"kids_cap":{"t":"ptr","v":"0x0e92f81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e92f6f8"},"kids_end":{"t":"ptr","v":"0x0e92f700"},"kids_cap":{"t":"ptr","v":"0x0e92f700"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e92f6f8"},"kids_end":{"t":"ptr","v":"0x0e92f700"},"kids_cap":{"t":"ptr","v":"0x0e92f700"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e92f7d8"},"kids_end":{"t":"ptr","v":"0x0e92f7e0"},"kids_cap":{"t":"ptr","v":"0x0e92f7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e92f7d8"},"kids_end":{"t":"ptr","v":"0x0e92f7e0"},"kids_cap":{"t":"ptr","v":"0x0e92f7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e92f708"},"kids_end":{"t":"ptr","v":"0x0e92f710"},"kids_cap":{"t":"ptr","v":"0x0e92f710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e92f708"},"kids_end":{"t":"ptr","v":"0x0e92f710"},"kids_cap":{"t":"ptr","v":"0x0e92f710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e92f7e8"},"kids_end":{"t":"ptr","v":"0x0e92f7ec"},"kids_cap":{"t":"ptr","v":"0x0e92f7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e92f7e8"},"kids_end":{"t":"ptr","v":"0x0e92f7ec"},"kids_cap":{"t":"ptr","v":"0x0e92f7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e92f7f8"},"kids_end":{"t":"ptr","v":"0x0e92f7fc"},"kids_cap":{"t":"ptr","v":"0x0e92f7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e92f7f8"},"kids_end":{"t":"ptr","v":"0x0e92f7fc"},"kids_cap":{"t":"ptr","v":"0x0e92f7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e92f808"},"kids_end":{"t":"ptr","v":"0x0e92f810"},"kids_cap":{"t":"ptr","v":"0x0e92f810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e92f808"},"kids_end":{"t":"ptr","v":"0x0e92f810"},"kids_cap":{"t":"ptr","v":"0x0e92f810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e92fa68"},"kids_end":{"t":"ptr","v":"0x0e92fa6c"},"kids_cap":{"t":"ptr","v":"0x0e92fa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e92fa68"},"kids_end":{"t":"ptr","v":"0x0e92fa6c"},"kids_cap":{"t":"ptr","v":"0x0e92fa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe728"},"kids_end":{"t":"ptr","v":"0x0e8fe734"},"kids_cap":{"t":"ptr","v":"0x0e8fe734"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe728"},"kids_end":{"t":"ptr","v":"0x0e8fe734"},"kids_cap":{"t":"ptr","v":"0x0e8fe734"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e92f908"},"kids_end":{"t":"ptr","v":"0x0e92f90c"},"kids_cap":{"t":"ptr","v":"0x0e92f90c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e92f908"},"kids_end":{"t":"ptr","v":"0x0e92f90c"},"kids_cap":{"t":"ptr","v":"0x0e92f90c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d258"},"kids_end":{"t":"ptr","v":"0x0e88d26c"},"kids_cap":{"t":"ptr","v":"0x0e88d26c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d258"},"kids_end":{"t":"ptr","v":"0x0e88d26c"},"kids_cap":{"t":"ptr","v":"0x0e88d26c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e92faa8"},"kids_end":{"t":"ptr","v":"0x0e92faac"},"kids_cap":{"t":"ptr","v":"0x0e92faac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e92faa8"},"kids_end":{"t":"ptr","v":"0x0e92faac"},"kids_cap":{"t":"ptr","v":"0x0e92faac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e92f938"},"kids_end":{"t":"ptr","v":"0x0e92f93c"},"kids_cap":{"t":"ptr","v":"0x0e92f93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e92f938"},"kids_end":{"t":"ptr","v":"0x0e92f93c"},"kids_cap":{"t":"ptr","v":"0x0e92f93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e92f988"},"kids_end":{"t":"ptr","v":"0x0e92f98c"},"kids_cap":{"t":"ptr","v":"0x0e92f98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e92f988"},"kids_end":{"t":"ptr","v":"0x0e92f98c"},"kids_cap":{"t":"ptr","v":"0x0e92f98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e92f9f8"},"kids_end":{"t":"ptr","v":"0x0e92f9fc"},"kids_cap":{"t":"ptr","v":"0x0e92f9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e92f9f8"},"kids_end":{"t":"ptr","v":"0x0e92f9fc"},"kids_cap":{"t":"ptr","v":"0x0e92f9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9309f8"},"kids_end":{"t":"ptr","v":"0x0e9309fc"},"kids_cap":{"t":"ptr","v":"0x0e9309fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9309f8"},"kids_end":{"t":"ptr","v":"0x0e9309fc"},"kids_cap":{"t":"ptr","v":"0x0e9309fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe740"},"kids_end":{"t":"ptr","v":"0x0e8fe750"},"kids_cap":{"t":"ptr","v":"0x0e8fe750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe740"},"kids_end":{"t":"ptr","v":"0x0e8fe750"},"kids_cap":{"t":"ptr","v":"0x0e8fe750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fe638"},"kids_end":{"t":"ptr","v":"0x0e8fe644"},"kids_cap":{"t":"ptr","v":"0x0e8fe644"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fe638"},"kids_end":{"t":"ptr","v":"0x0e8fe644"},"kids_cap":{"t":"ptr","v":"0x0e8fe644"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e930908"},"kids_end":{"t":"ptr","v":"0x0e93090c"},"kids_cap":{"t":"ptr","v":"0x0e93090c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e930908"},"kids_end":{"t":"ptr","v":"0x0e93090c"},"kids_cap":{"t":"ptr","v":"0x0e93090c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9309a8"},"kids_end":{"t":"ptr","v":"0x0e9309ac"},"kids_cap":{"t":"ptr","v":"0x0e9309ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9309a8"},"kids_end":{"t":"ptr","v":"0x0e9309ac"},"kids_cap":{"t":"ptr","v":"0x0e9309ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe7e8"},"kids_end":{"t":"ptr","v":"0x0e8fe7f8"},"kids_cap":{"t":"ptr","v":"0x0e8fe7f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe7e8"},"kids_end":{"t":"ptr","v":"0x0e8fe7f8"},"kids_cap":{"t":"ptr","v":"0x0e8fe7f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9308e8"},"kids_end":{"t":"ptr","v":"0x0e9308f0"},"kids_cap":{"t":"ptr","v":"0x0e9308f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9308e8"},"kids_end":{"t":"ptr","v":"0x0e9308f0"},"kids_cap":{"t":"ptr","v":"0x0e9308f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e930968"},"kids_end":{"t":"ptr","v":"0x0e93096c"},"kids_cap":{"t":"ptr","v":"0x0e93096c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e930968"},"kids_end":{"t":"ptr","v":"0x0e93096c"},"kids_cap":{"t":"ptr","v":"0x0e93096c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e930978"},"kids_end":{"t":"ptr","v":"0x0e93097c"},"kids_cap":{"t":"ptr","v":"0x0e93097c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e930978"},"kids_end":{"t":"ptr","v":"0x0e93097c"},"kids_cap":{"t":"ptr","v":"0x0e93097c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fe758"},"kids_end":{"t":"ptr","v":"0x0e8fe764"},"kids_cap":{"t":"ptr","v":"0x0e8fe764"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fe758"},"kids_end":{"t":"ptr","v":"0x0e8fe764"},"kids_cap":{"t":"ptr","v":"0x0e8fe764"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9308f8"},"kids_end":{"t":"ptr","v":"0x0e930900"},"kids_cap":{"t":"ptr","v":"0x0e930900"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9308f8"},"kids_end":{"t":"ptr","v":"0x0e930900"},"kids_cap":{"t":"ptr","v":"0x0e930900"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d0b8"},"kids_end":{"t":"ptr","v":"0x0e88d0cc"},"kids_cap":{"t":"ptr","v":"0x0e88d0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d0b8"},"kids_end":{"t":"ptr","v":"0x0e88d0cc"},"kids_cap":{"t":"ptr","v":"0x0e88d0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e930918"},"kids_end":{"t":"ptr","v":"0x0e93091c"},"kids_cap":{"t":"ptr","v":"0x0e93091c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e930918"},"kids_end":{"t":"ptr","v":"0x0e93091c"},"kids_cap":{"t":"ptr","v":"0x0e93091c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e930988"},"kids_end":{"t":"ptr","v":"0x0e93098c"},"kids_cap":{"t":"ptr","v":"0x0e93098c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e930988"},"kids_end":{"t":"ptr","v":"0x0e93098c"},"kids_cap":{"t":"ptr","v":"0x0e93098c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9309d8"},"kids_end":{"t":"ptr","v":"0x0e9309dc"},"kids_cap":{"t":"ptr","v":"0x0e9309dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9309d8"},"kids_end":{"t":"ptr","v":"0x0e9309dc"},"kids_cap":{"t":"ptr","v":"0x0e9309dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e930998"},"kids_end":{"t":"ptr","v":"0x0e93099c"},"kids_cap":{"t":"ptr","v":"0x0e93099c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e930998"},"kids_end":{"t":"ptr","v":"0x0e93099c"},"kids_cap":{"t":"ptr","v":"0x0e93099c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9309b8"},"kids_end":{"t":"ptr","v":"0x0e9309bc"},"kids_cap":{"t":"ptr","v":"0x0e9309bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9309b8"},"kids_end":{"t":"ptr","v":"0x0e9309bc"},"kids_cap":{"t":"ptr","v":"0x0e9309bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e92eb48"},"kids_end":{"t":"ptr","v":"0x0e92eb50"},"kids_cap":{"t":"ptr","v":"0x0e92eb50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e92eb48"},"kids_end":{"t":"ptr","v":"0x0e92eb50"},"kids_cap":{"t":"ptr","v":"0x0e92eb50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d1b8"},"kids_end":{"t":"ptr","v":"0x0e88d1cc"},"kids_cap":{"t":"ptr","v":"0x0e88d1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d1b8"},"kids_end":{"t":"ptr","v":"0x0e88d1cc"},"kids_cap":{"t":"ptr","v":"0x0e88d1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e92ecb8"},"kids_end":{"t":"ptr","v":"0x0e92ecbc"},"kids_cap":{"t":"ptr","v":"0x0e92ecbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e92ecb8"},"kids_end":{"t":"ptr","v":"0x0e92ecbc"},"kids_cap":{"t":"ptr","v":"0x0e92ecbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e92eb68"},"kids_end":{"t":"ptr","v":"0x0e92eb6c"},"kids_cap":{"t":"ptr","v":"0x0e92eb6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e92eb68"},"kids_end":{"t":"ptr","v":"0x0e92eb6c"},"kids_cap":{"t":"ptr","v":"0x0e92eb6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e92ebd8"},"kids_end":{"t":"ptr","v":"0x0e92ebdc"},"kids_cap":{"t":"ptr","v":"0x0e92ebdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e92ebd8"},"kids_end":{"t":"ptr","v":"0x0e92ebdc"},"kids_cap":{"t":"ptr","v":"0x0e92ebdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e92eb18"},"kids_end":{"t":"ptr","v":"0x0e92eb20"},"kids_cap":{"t":"ptr","v":"0x0e92eb20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e92eb18"},"kids_end":{"t":"ptr","v":"0x0e92eb20"},"kids_cap":{"t":"ptr","v":"0x0e92eb20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e92eb78"},"kids_end":{"t":"ptr","v":"0x0e92eb80"},"kids_cap":{"t":"ptr","v":"0x0e92eb80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e92eb78"},"kids_end":{"t":"ptr","v":"0x0e92eb80"},"kids_cap":{"t":"ptr","v":"0x0e92eb80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e92ec98"},"kids_end":{"t":"ptr","v":"0x0e92eca0"},"kids_cap":{"t":"ptr","v":"0x0e92eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e92ec98"},"kids_end":{"t":"ptr","v":"0x0e92eca0"},"kids_cap":{"t":"ptr","v":"0x0e92eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e92eb58"},"kids_end":{"t":"ptr","v":"0x0e92eb5c"},"kids_cap":{"t":"ptr","v":"0x0e92eb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e92eb58"},"kids_end":{"t":"ptr","v":"0x0e92eb5c"},"kids_cap":{"t":"ptr","v":"0x0e92eb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e92eca8"},"kids_end":{"t":"ptr","v":"0x0e92ecac"},"kids_cap":{"t":"ptr","v":"0x0e92ecac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e92eca8"},"kids_end":{"t":"ptr","v":"0x0e92ecac"},"kids_cap":{"t":"ptr","v":"0x0e92ecac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe5c0"},"kids_end":{"t":"ptr","v":"0x0e8fe5cc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe5c0"},"kids_end":{"t":"ptr","v":"0x0e8fe5cc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe800"},"kids_end":{"t":"ptr","v":"0x0e8fe80c"},"kids_cap":{"t":"ptr","v":"0x0e8fe80c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe800"},"kids_end":{"t":"ptr","v":"0x0e8fe80c"},"kids_cap":{"t":"ptr","v":"0x0e8fe80c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe770"},"kids_end":{"t":"ptr","v":"0x0e8fe77c"},"kids_cap":{"t":"ptr","v":"0x0e8fe77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe770"},"kids_end":{"t":"ptr","v":"0x0e8fe77c"},"kids_cap":{"t":"ptr","v":"0x0e8fe77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe7a0"},"kids_end":{"t":"ptr","v":"0x0e8fe7ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe7a0"},"kids_end":{"t":"ptr","v":"0x0e8fe7ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe818"},"kids_end":{"t":"ptr","v":"0x0e8fe824"},"kids_cap":{"t":"ptr","v":"0x0e8fe824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe818"},"kids_end":{"t":"ptr","v":"0x0e8fe824"},"kids_cap":{"t":"ptr","v":"0x0e8fe824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d1f8"},"kids_end":{"t":"ptr","v":"0x0e88d210"},"kids_cap":{"t":"ptr","v":"0x0e88d210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d1f8"},"kids_end":{"t":"ptr","v":"0x0e88d210"},"kids_cap":{"t":"ptr","v":"0x0e88d210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e92ec28"},"kids_end":{"t":"ptr","v":"0x0e92ec30"},"kids_cap":{"t":"ptr","v":"0x0e92ec30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e92ec28"},"kids_end":{"t":"ptr","v":"0x0e92ec30"},"kids_cap":{"t":"ptr","v":"0x0e92ec30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e92ec68"},"kids_end":{"t":"ptr","v":"0x0e92ec70"},"kids_cap":{"t":"ptr","v":"0x0e92ec70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e92ec68"},"kids_end":{"t":"ptr","v":"0x0e92ec70"},"kids_cap":{"t":"ptr","v":"0x0e92ec70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e92eba8"},"kids_end":{"t":"ptr","v":"0x0e92ebb0"},"kids_cap":{"t":"ptr","v":"0x0e92ebb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e92eba8"},"kids_end":{"t":"ptr","v":"0x0e92ebb0"},"kids_cap":{"t":"ptr","v":"0x0e92ebb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e92ec18"},"kids_end":{"t":"ptr","v":"0x0e92ec20"},"kids_cap":{"t":"ptr","v":"0x0e92ec20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e92ec18"},"kids_end":{"t":"ptr","v":"0x0e92ec20"},"kids_cap":{"t":"ptr","v":"0x0e92ec20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e92eae8"},"kids_end":{"t":"ptr","v":"0x0e92eaec"},"kids_cap":{"t":"ptr","v":"0x0e92eaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e92eae8"},"kids_end":{"t":"ptr","v":"0x0e92eaec"},"kids_cap":{"t":"ptr","v":"0x0e92eaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e92ec58"},"kids_end":{"t":"ptr","v":"0x0e92ec5c"},"kids_cap":{"t":"ptr","v":"0x0e92ec5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e92ec58"},"kids_end":{"t":"ptr","v":"0x0e92ec5c"},"kids_cap":{"t":"ptr","v":"0x0e92ec5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e92ec08"},"kids_end":{"t":"ptr","v":"0x0e92ec0c"},"kids_cap":{"t":"ptr","v":"0x0e92ec0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e92ec08"},"kids_end":{"t":"ptr","v":"0x0e92ec0c"},"kids_cap":{"t":"ptr","v":"0x0e92ec0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e92ecc8"},"kids_end":{"t":"ptr","v":"0x0e92eccc"},"kids_cap":{"t":"ptr","v":"0x0e92eccc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e92ecc8"},"kids_end":{"t":"ptr","v":"0x0e92eccc"},"kids_cap":{"t":"ptr","v":"0x0e92eccc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e92ecd8"},"kids_end":{"t":"ptr","v":"0x0e92ecdc"},"kids_cap":{"t":"ptr","v":"0x0e92ecdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e92ecd8"},"kids_end":{"t":"ptr","v":"0x0e92ecdc"},"kids_cap":{"t":"ptr","v":"0x0e92ecdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e92eb88"},"kids_end":{"t":"ptr","v":"0x0e92eb8c"},"kids_cap":{"t":"ptr","v":"0x0e92eb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e92eb88"},"kids_end":{"t":"ptr","v":"0x0e92eb8c"},"kids_cap":{"t":"ptr","v":"0x0e92eb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e92ebb8"},"kids_end":{"t":"ptr","v":"0x0e92ebbc"},"kids_cap":{"t":"ptr","v":"0x0e92ebbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e92ebb8"},"kids_end":{"t":"ptr","v":"0x0e92ebbc"},"kids_cap":{"t":"ptr","v":"0x0e92ebbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e92eaf8"},"kids_end":{"t":"ptr","v":"0x0e92eafc"},"kids_cap":{"t":"ptr","v":"0x0e92eafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e92eaf8"},"kids_end":{"t":"ptr","v":"0x0e92eafc"},"kids_cap":{"t":"ptr","v":"0x0e92eafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e92eb98"},"kids_end":{"t":"ptr","v":"0x0e92eb9c"},"kids_cap":{"t":"ptr","v":"0x0e92eb9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e92eb98"},"kids_end":{"t":"ptr","v":"0x0e92eb9c"},"kids_cap":{"t":"ptr","v":"0x0e92eb9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e92ebe8"},"kids_end":{"t":"ptr","v":"0x0e92ebec"},"kids_cap":{"t":"ptr","v":"0x0e92ebec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e92ebe8"},"kids_end":{"t":"ptr","v":"0x0e92ebec"},"kids_cap":{"t":"ptr","v":"0x0e92ebec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e92eb08"},"kids_end":{"t":"ptr","v":"0x0e92eb0c"},"kids_cap":{"t":"ptr","v":"0x0e92eb0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e92eb08"},"kids_end":{"t":"ptr","v":"0x0e92eb0c"},"kids_cap":{"t":"ptr","v":"0x0e92eb0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"before":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}},"ours":{"ret":null,"side":{"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":375},"next_index":{"t":"i64","v":249}}}},"overbudget":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9caf28"},"kids_end":{"t":"ptr","v":"0x0e9caf2c"},"kids_cap":{"t":"ptr","v":"0x0e9caf2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cae68"},"kids_end":{"t":"ptr","v":"0x0e9cae6c"},"kids_cap":{"t":"ptr","v":"0x0e9cae6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cadf8"},"kids_end":{"t":"ptr","v":"0x0e9cadfc"},"kids_cap":{"t":"ptr","v":"0x0e9cadfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9caea8"},"kids_end":{"t":"ptr","v":"0x0e9caeb0"},"kids_cap":{"t":"ptr","v":"0x0e9caeb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9caf38"},"kids_end":{"t":"ptr","v":"0x0e9caf40"},"kids_cap":{"t":"ptr","v":"0x0e9caf40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cad68"},"kids_end":{"t":"ptr","v":"0x0e9cad6c"},"kids_cap":{"t":"ptr","v":"0x0e9cad6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9caeb8"},"kids_end":{"t":"ptr","v":"0x0e9caebc"},"kids_cap":{"t":"ptr","v":"0x0e9caebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9caef8"},"kids_end":{"t":"ptr","v":"0x0e9caefc"},"kids_cap":{"t":"ptr","v":"0x0e9caefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe0e0"},"kids_end":{"t":"ptr","v":"0x0e8fe0ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cad88"},"kids_end":{"t":"ptr","v":"0x0e9cad90"},"kids_cap":{"t":"ptr","v":"0x0e9cad90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe038"},"kids_end":{"t":"ptr","v":"0x0e8fe048"},"kids_cap":{"t":"ptr","v":"0x0e8fe048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cadb8"},"kids_end":{"t":"ptr","v":"0x0e9cadbc"},"kids_cap":{"t":"ptr","v":"0x0e9cadbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cae98"},"kids_end":{"t":"ptr","v":"0x0e9cae9c"},"kids_cap":{"t":"ptr","v":"0x0e9cae9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fdf90"},"kids_end":{"t":"ptr","v":"0x0e8fdf9c"},"kids_cap":{"t":"ptr","v":"0x0e8fdf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9caec8"},"kids_end":{"t":"ptr","v":"0x0e9caecc"},"kids_cap":{"t":"ptr","v":"0x0e9caecc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cae08"},"kids_end":{"t":"ptr","v":"0x0e9cae0c"},"kids_cap":{"t":"ptr","v":"0x0e9cae0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9caed8"},"kids_end":{"t":"ptr","v":"0x0e9caedc"},"kids_cap":{"t":"ptr","v":"0x0e9caedc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fdfd8"},"kids_end":{"t":"ptr","v":"0x0e8fdfe4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe158"},"kids_end":{"t":"ptr","v":"0x0e8fe168"},"kids_cap":{"t":"ptr","v":"0x0e8fe168"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cae18"},"kids_end":{"t":"ptr","v":"0x0e9cae1c"},"kids_cap":{"t":"ptr","v":"0x0e9cae1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cae28"},"kids_end":{"t":"ptr","v":"0x0e9cae2c"},"kids_cap":{"t":"ptr","v":"0x0e9cae2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb068"},"kids_end":{"t":"ptr","v":"0x0e9cb06c"},"kids_cap":{"t":"ptr","v":"0x0e9cb06c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb0d8"},"kids_end":{"t":"ptr","v":"0x0e9cb0dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9caf48"},"kids_end":{"t":"ptr","v":"0x0e9caf50"},"kids_cap":{"t":"ptr","v":"0x0e9caf50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe098"},"kids_end":{"t":"ptr","v":"0x0e8fe0a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb088"},"kids_end":{"t":"ptr","v":"0x0e9cb090"},"kids_cap":{"t":"ptr","v":"0x0e9cb090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fdfa8"},"kids_end":{"t":"ptr","v":"0x0e8fdfb4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe1a0"},"kids_end":{"t":"ptr","v":"0x0e8fe1ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe008"},"kids_end":{"t":"ptr","v":"0x0e8fe014"},"kids_cap":{"t":"ptr","v":"0x0e8fe014"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9caf98"},"kids_end":{"t":"ptr","v":"0x0e9caf9c"},"kids_cap":{"t":"ptr","v":"0x0e9caf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cafd8"},"kids_end":{"t":"ptr","v":"0x0e9cafdc"},"kids_cap":{"t":"ptr","v":"0x0e9cafdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe050"},"kids_end":{"t":"ptr","v":"0x0e8fe05c"},"kids_cap":{"t":"ptr","v":"0x0e8fe05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9caf58"},"kids_end":{"t":"ptr","v":"0x0e9caf5c"},"kids_cap":{"t":"ptr","v":"0x0e9caf5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9cb0e8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb0f8"},"kids_end":{"t":"ptr","v":"0x0e9cb0fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9caf68"},"kids_end":{"t":"ptr","v":"0x0e9caf6c"},"kids_cap":{"t":"ptr","v":"0x0e9caf6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cafc8"},"kids_end":{"t":"ptr","v":"0x0e9cafcc"},"kids_cap":{"t":"ptr","v":"0x0e9cafcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe1d0"},"kids_end":{"t":"ptr","v":"0x0e8fe1dc"},"kids_cap":{"t":"ptr","v":"0x0e8fe1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9caf78"},"kids_end":{"t":"ptr","v":"0x0e9caf7c"},"kids_cap":{"t":"ptr","v":"0x0e9caf7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb118"},"kids_end":{"t":"ptr","v":"0x0e9cb11c"},"kids_cap":{"t":"ptr","v":"0x0e9cb11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb108"},"kids_end":{"t":"ptr","v":"0x0e9cb10c"},"kids_cap":{"t":"ptr","v":"0x0e9cb10c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb0c8"},"kids_end":{"t":"ptr","v":"0x0e9cb0cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb098"},"kids_end":{"t":"ptr","v":"0x0e9cb09c"},"kids_cap":{"t":"ptr","v":"0x0e9cb09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb128"},"kids_end":{"t":"ptr","v":"0x0e9cb12c"},"kids_cap":{"t":"ptr","v":"0x0e9cb12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9caf88"},"kids_end":{"t":"ptr","v":"0x0e9caf8c"},"kids_cap":{"t":"ptr","v":"0x0e9caf8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe1b8"},"kids_end":{"t":"ptr","v":"0x0e8fe1c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fdfc0"},"kids_end":{"t":"ptr","v":"0x0e8fdfcc"},"kids_cap":{"t":"ptr","v":"0x0e8fdfcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb078"},"kids_end":{"t":"ptr","v":"0x0e9cb07c"},"kids_cap":{"t":"ptr","v":"0x0e9cb07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb008"},"kids_end":{"t":"ptr","v":"0x0e9cb010"},"kids_cap":{"t":"ptr","v":"0x0e9cb010"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cafa8"},"kids_end":{"t":"ptr","v":"0x0e9cafb0"},"kids_cap":{"t":"ptr","v":"0x0e9cafb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88d218"},"kids_end":{"t":"ptr","v":"0x0e88d22c"},"kids_cap":{"t":"ptr","v":"0x0e88d22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fdff0"},"kids_end":{"t":"ptr","v":"0x0e8fdffc"},"kids_cap":{"t":"ptr","v":"0x0e8fdffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969f00"},"kids_end":{"t":"ptr","v":"0x0e969f24"},"kids_cap":{"t":"ptr","v":"0x0e969f24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9cafe8"},"kids_end":{"t":"ptr","v":"0x0e9cafec"},"kids_cap":{"t":"ptr","v":"0x0e9cafec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9cafb8"},"kids_end":{"t":"ptr","v":"0x0e9cafbc"},"kids_cap":{"t":"ptr","v":"0x0e9cafbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fe110"},"kids_end":{"t":"ptr","v":"0x0e8fe11c"},"kids_cap":{"t":"ptr","v":"0x0e8fe11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb138"},"kids_end":{"t":"ptr","v":"0x0e9cb13c"},"kids_cap":{"t":"ptr","v":"0x0e9cb13c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9caff8"},"kids_end":{"t":"ptr","v":"0x0e9caffc"},"kids_cap":{"t":"ptr","v":"0x0e9caffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb018"},"kids_end":{"t":"ptr","v":"0x0e9cb01c"},"kids_cap":{"t":"ptr","v":"0x0e9cb01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb0a8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb028"},"kids_end":{"t":"ptr","v":"0x0e9cb02c"},"kids_cap":{"t":"ptr","v":"0x0e9cb02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb038"},"kids_end":{"t":"ptr","v":"0x0e9cb040"},"kids_cap":{"t":"ptr","v":"0x0e9cb040"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb048"},"kids_end":{"t":"ptr","v":"0x0e9cb050"},"kids_cap":{"t":"ptr","v":"0x0e9cb050"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d358"},"kids_end":{"t":"ptr","v":"0x0e88d36c"},"kids_cap":{"t":"ptr","v":"0x0e88d36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe218"},"kids_end":{"t":"ptr","v":"0x0e8fe224"},"kids_cap":{"t":"ptr","v":"0x0e8fe224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb058"},"kids_end":{"t":"ptr","v":"0x0e9cb05c"},"kids_cap":{"t":"ptr","v":"0x0e9cb05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb0b8"},"kids_end":{"t":"ptr","v":"0x0e9cb0bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e92edd8"},"kids_end":{"t":"ptr","v":"0x0e92eddc"},"kids_cap":{"t":"ptr","v":"0x0e92eddc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e92ed78"},"kids_end":{"t":"ptr","v":"0x0e92ed7c"},"kids_cap":{"t":"ptr","v":"0x0e92ed7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e92ede8"},"kids_end":{"t":"ptr","v":"0x0e92edf0"},"kids_cap":{"t":"ptr","v":"0x0e92edf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe020"},"kids_end":{"t":"ptr","v":"0x0e8fe02c"},"kids_cap":{"t":"ptr","v":"0x0e8fe02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e92edb8"},"kids_end":{"t":"ptr","v":"0x0e92edc0"},"kids_cap":{"t":"ptr","v":"0x0e92edc0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e92ee48"},"kids_end":{"t":"ptr","v":"0x0e92ee50"},"kids_cap":{"t":"ptr","v":"0x0e92ee50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e92eeb8"},"kids_end":{"t":"ptr","v":"0x0e92eebc"},"kids_cap":{"t":"ptr","v":"0x0e92eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe0c8"},"kids_end":{"t":"ptr","v":"0x0e8fe0d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fe0f8"},"kids_end":{"t":"ptr","v":"0x0e8fe104"},"kids_cap":{"t":"ptr","v":"0x0e8fe104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe350"},"kids_end":{"t":"ptr","v":"0x0e8fe360"},"kids_cap":{"t":"ptr","v":"0x0e8fe360"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e92eec8"},"kids_end":{"t":"ptr","v":"0x0e92eed0"},"kids_cap":{"t":"ptr","v":"0x0e92eed0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e92ee18"},"kids_end":{"t":"ptr","v":"0x0e92ee1c"},"kids_cap":{"t":"ptr","v":"0x0e92ee1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe380"},"kids_end":{"t":"ptr","v":"0x0e8fe38c"},"kids_cap":{"t":"ptr","v":"0x0e8fe38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e92ee58"},"kids_end":{"t":"ptr","v":"0x0e92ee5c"},"kids_cap":{"t":"ptr","v":"0x0e92ee5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e92edc8"},"kids_end":{"t":"ptr","v":"0x0e92edcc"},"kids_cap":{"t":"ptr","v":"0x0e92edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e92ee28"},"kids_end":{"t":"ptr","v":"0x0e92ee2c"},"kids_cap":{"t":"ptr","v":"0x0e92ee2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e92ece8"},"kids_end":{"t":"ptr","v":"0x0e92ecec"},"kids_cap":{"t":"ptr","v":"0x0e92ecec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe3e0"},"kids_end":{"t":"ptr","v":"0x0e8fe3ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e92ed38"},"kids_end":{"t":"ptr","v":"0x0e92ed3c"},"kids_cap":{"t":"ptr","v":"0x0e92ed3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e92ed58"},"kids_end":{"t":"ptr","v":"0x0e92ed60"},"kids_cap":{"t":"ptr","v":"0x0e92ed60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fe6f8"},"kids_end":{"t":"ptr","v":"0x0e8fe704"},"kids_cap":{"t":"ptr","v":"0x0e8fe704"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e92edf8"},"kids_end":{"t":"ptr","v":"0x0e92edfc"},"kids_cap":{"t":"ptr","v":"0x0e92edfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e92ee38"},"kids_end":{"t":"ptr","v":"0x0e92ee40"},"kids_cap":{"t":"ptr","v":"0x0e92ee40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e92ee08"},"kids_end":{"t":"ptr","v":"0x0e92ee0c"},"kids_cap":{"t":"ptr","v":"0x0e92ee0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e92ee68"},"kids_end":{"t":"ptr","v":"0x0e92ee70"},"kids_cap":{"t":"ptr","v":"0x0e92ee70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e92ee78"},"kids_end":{"t":"ptr","v":"0x0e92ee80"},"kids_cap":{"t":"ptr","v":"0x0e92ee80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e92ed48"},"kids_end":{"t":"ptr","v":"0x0e92ed50"},"kids_cap":{"t":"ptr","v":"0x0e92ed50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e92eed8"},"kids_end":{"t":"ptr","v":"0x0e92eee0"},"kids_cap":{"t":"ptr","v":"0x0e92eee0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e92ed88"},"kids_end":{"t":"ptr","v":"0x0e92ed8c"},"kids_cap":{"t":"ptr","v":"0x0e92ed8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e92ed68"},"kids_end":{"t":"ptr","v":"0x0e92ed6c"},"kids_cap":{"t":"ptr","v":"0x0e92ed6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e92ecf8"},"kids_end":{"t":"ptr","v":"0x0e92ed00"},"kids_cap":{"t":"ptr","v":"0x0e92ed00"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e92ed08"},"kids_end":{"t":"ptr","v":"0x0e92ed10"},"kids_cap":{"t":"ptr","v":"0x0e92ed10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e92ee98"},"kids_end":{"t":"ptr","v":"0x0e92ee9c"},"kids_cap":{"t":"ptr","v":"0x0e92ee9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e92ed18"},"kids_end":{"t":"ptr","v":"0x0e92ed1c"},"kids_cap":{"t":"ptr","v":"0x0e92ed1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e92ee88"},"kids_end":{"t":"ptr","v":"0x0e92ee90"},"kids_cap":{"t":"ptr","v":"0x0e92ee90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e92eea8"},"kids_end":{"t":"ptr","v":"0x0e92eeac"},"kids_cap":{"t":"ptr","v":"0x0e92eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e92ed28"},"kids_end":{"t":"ptr","v":"0x0e92ed2c"},"kids_cap":{"t":"ptr","v":"0x0e92ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e92ed98"},"kids_end":{"t":"ptr","v":"0x0e92eda0"},"kids_cap":{"t":"ptr","v":"0x0e92eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e92eda8"},"kids_end":{"t":"ptr","v":"0x0e92edac"},"kids_cap":{"t":"ptr","v":"0x0e92edac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e92f7a8"},"kids_end":{"t":"ptr","v":"0x0e92f7ac"},"kids_cap":{"t":"ptr","v":"0x0e92f7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fe6c8"},"kids_end":{"t":"ptr","v":"0x0e8fe6d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fe620"},"kids_end":{"t":"ptr","v":"0x0e8fe630"},"kids_cap":{"t":"ptr","v":"0x0e8fe630"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e92f6e8"},"kids_end":{"t":"ptr","v":"0x0e92f6f0"},"kids_cap":{"t":"ptr","v":"0x0e92f6f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e92f7b8"},"kids_end":{"t":"ptr","v":"0x0e92f7c0"},"kids_cap":{"t":"ptr","v":"0x0e92f7c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e92f818"},"kids_end":{"t":"ptr","v":"0x0e92f81c"},"kids_cap":{"t":"ptr","v":"0x0e92f81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e92f6f8"},"kids_end":{"t":"ptr","v":"0x0e92f700"},"kids_cap":{"t":"ptr","v":"0x0e92f700"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e92f7d8"},"kids_end":{"t":"ptr","v":"0x0e92f7e0"},"kids_cap":{"t":"ptr","v":"0x0e92f7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e92f708"},"kids_end":{"t":"ptr","v":"0x0e92f710"},"kids_cap":{"t":"ptr","v":"0x0e92f710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e92f7e8"},"kids_end":{"t":"ptr","v":"0x0e92f7ec"},"kids_cap":{"t":"ptr","v":"0x0e92f7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e92f7f8"},"kids_end":{"t":"ptr","v":"0x0e92f7fc"},"kids_cap":{"t":"ptr","v":"0x0e92f7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e92f808"},"kids_end":{"t":"ptr","v":"0x0e92f810"},"kids_cap":{"t":"ptr","v":"0x0e92f810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e92fa68"},"kids_end":{"t":"ptr","v":"0x0e92fa6c"},"kids_cap":{"t":"ptr","v":"0x0e92fa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe728"},"kids_end":{"t":"ptr","v":"0x0e8fe734"},"kids_cap":{"t":"ptr","v":"0x0e8fe734"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e92f908"},"kids_end":{"t":"ptr","v":"0x0e92f90c"},"kids_cap":{"t":"ptr","v":"0x0e92f90c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d258"},"kids_end":{"t":"ptr","v":"0x0e88d26c"},"kids_cap":{"t":"ptr","v":"0x0e88d26c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e92faa8"},"kids_end":{"t":"ptr","v":"0x0e92faac"},"kids_cap":{"t":"ptr","v":"0x0e92faac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e92f938"},"kids_end":{"t":"ptr","v":"0x0e92f93c"},"kids_cap":{"t":"ptr","v":"0x0e92f93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e92f988"},"kids_end":{"t":"ptr","v":"0x0e92f98c"},"kids_cap":{"t":"ptr","v":"0x0e92f98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e92f9f8"},"kids_end":{"t":"ptr","v":"0x0e92f9fc"},"kids_cap":{"t":"ptr","v":"0x0e92f9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9309f8"},"kids_end":{"t":"ptr","v":"0x0e9309fc"},"kids_cap":{"t":"ptr","v":"0x0e9309fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe740"},"kids_end":{"t":"ptr","v":"0x0e8fe750"},"kids_cap":{"t":"ptr","v":"0x0e8fe750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fe638"},"kids_end":{"t":"ptr","v":"0x0e8fe644"},"kids_cap":{"t":"ptr","v":"0x0e8fe644"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e930908"},"kids_end":{"t":"ptr","v":"0x0e93090c"},"kids_cap":{"t":"ptr","v":"0x0e93090c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9309a8"},"kids_end":{"t":"ptr","v":"0x0e9309ac"},"kids_cap":{"t":"ptr","v":"0x0e9309ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe7e8"},"kids_end":{"t":"ptr","v":"0x0e8fe7f8"},"kids_cap":{"t":"ptr","v":"0x0e8fe7f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9308e8"},"kids_end":{"t":"ptr","v":"0x0e9308f0"},"kids_cap":{"t":"ptr","v":"0x0e9308f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e930968"},"kids_end":{"t":"ptr","v":"0x0e93096c"},"kids_cap":{"t":"ptr","v":"0x0e93096c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e930978"},"kids_end":{"t":"ptr","v":"0x0e93097c"},"kids_cap":{"t":"ptr","v":"0x0e93097c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fe758"},"kids_end":{"t":"ptr","v":"0x0e8fe764"},"kids_cap":{"t":"ptr","v":"0x0e8fe764"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9308f8"},"kids_end":{"t":"ptr","v":"0x0e930900"},"kids_cap":{"t":"ptr","v":"0x0e930900"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d0b8"},"kids_end":{"t":"ptr","v":"0x0e88d0cc"},"kids_cap":{"t":"ptr","v":"0x0e88d0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e930918"},"kids_end":{"t":"ptr","v":"0x0e93091c"},"kids_cap":{"t":"ptr","v":"0x0e93091c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e930988"},"kids_end":{"t":"ptr","v":"0x0e93098c"},"kids_cap":{"t":"ptr","v":"0x0e93098c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9309d8"},"kids_end":{"t":"ptr","v":"0x0e9309dc"},"kids_cap":{"t":"ptr","v":"0x0e9309dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e930998"},"kids_end":{"t":"ptr","v":"0x0e93099c"},"kids_cap":{"t":"ptr","v":"0x0e93099c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9309b8"},"kids_end":{"t":"ptr","v":"0x0e9309bc"},"kids_cap":{"t":"ptr","v":"0x0e9309bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e92eb48"},"kids_end":{"t":"ptr","v":"0x0e92eb50"},"kids_cap":{"t":"ptr","v":"0x0e92eb50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d1b8"},"kids_end":{"t":"ptr","v":"0x0e88d1cc"},"kids_cap":{"t":"ptr","v":"0x0e88d1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e92ecb8"},"kids_end":{"t":"ptr","v":"0x0e92ecbc"},"kids_cap":{"t":"ptr","v":"0x0e92ecbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e92eb68"},"kids_end":{"t":"ptr","v":"0x0e92eb6c"},"kids_cap":{"t":"ptr","v":"0x0e92eb6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e92ebd8"},"kids_end":{"t":"ptr","v":"0x0e92ebdc"},"kids_cap":{"t":"ptr","v":"0x0e92ebdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e92eb18"},"kids_end":{"t":"ptr","v":"0x0e92eb20"},"kids_cap":{"t":"ptr","v":"0x0e92eb20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e92eb78"},"kids_end":{"t":"ptr","v":"0x0e92eb80"},"kids_cap":{"t":"ptr","v":"0x0e92eb80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e92ec98"},"kids_end":{"t":"ptr","v":"0x0e92eca0"},"kids_cap":{"t":"ptr","v":"0x0e92eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e92eb58"},"kids_end":{"t":"ptr","v":"0x0e92eb5c"},"kids_cap":{"t":"ptr","v":"0x0e92eb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e92eca8"},"kids_end":{"t":"ptr","v":"0x0e92ecac"},"kids_cap":{"t":"ptr","v":"0x0e92ecac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe5c0"},"kids_end":{"t":"ptr","v":"0x0e8fe5cc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe800"},"kids_end":{"t":"ptr","v":"0x0e8fe80c"},"kids_cap":{"t":"ptr","v":"0x0e8fe80c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe770"},"kids_end":{"t":"ptr","v":"0x0e8fe77c"},"kids_cap":{"t":"ptr","v":"0x0e8fe77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe7a0"},"kids_end":{"t":"ptr","v":"0x0e8fe7ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe818"},"kids_end":{"t":"ptr","v":"0x0e8fe824"},"kids_cap":{"t":"ptr","v":"0x0e8fe824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d1f8"},"kids_end":{"t":"ptr","v":"0x0e88d210"},"kids_cap":{"t":"ptr","v":"0x0e88d210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e92ec28"},"kids_end":{"t":"ptr","v":"0x0e92ec30"},"kids_cap":{"t":"ptr","v":"0x0e92ec30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e92ec68"},"kids_end":{"t":"ptr","v":"0x0e92ec70"},"kids_cap":{"t":"ptr","v":"0x0e92ec70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e92eba8"},"kids_end":{"t":"ptr","v":"0x0e92ebb0"},"kids_cap":{"t":"ptr","v":"0x0e92ebb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e92ec18"},"kids_end":{"t":"ptr","v":"0x0e92ec20"},"kids_cap":{"t":"ptr","v":"0x0e92ec20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e92eae8"},"kids_end":{"t":"ptr","v":"0x0e92eaec"},"kids_cap":{"t":"ptr","v":"0x0e92eaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e92ec58"},"kids_end":{"t":"ptr","v":"0x0e92ec5c"},"kids_cap":{"t":"ptr","v":"0x0e92ec5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e92ec08"},"kids_end":{"t":"ptr","v":"0x0e92ec0c"},"kids_cap":{"t":"ptr","v":"0x0e92ec0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e92ecc8"},"kids_end":{"t":"ptr","v":"0x0e92eccc"},"kids_cap":{"t":"ptr","v":"0x0e92eccc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e92ecd8"},"kids_end":{"t":"ptr","v":"0x0e92ecdc"},"kids_cap":{"t":"ptr","v":"0x0e92ecdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e92eb88"},"kids_end":{"t":"ptr","v":"0x0e92eb8c"},"kids_cap":{"t":"ptr","v":"0x0e92eb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e92ebb8"},"kids_end":{"t":"ptr","v":"0x0e92ebbc"},"kids_cap":{"t":"ptr","v":"0x0e92ebbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e92eaf8"},"kids_end":{"t":"ptr","v":"0x0e92eafc"},"kids_cap":{"t":"ptr","v":"0x0e92eafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e92eb98"},"kids_end":{"t":"ptr","v":"0x0e92eb9c"},"kids_cap":{"t":"ptr","v":"0x0e92eb9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e92ebe8"},"kids_end":{"t":"ptr","v":"0x0e92ebec"},"kids_cap":{"t":"ptr","v":"0x0e92ebec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e92eb08"},"kids_end":{"t":"ptr","v":"0x0e92eb0c"},"kids_cap":{"t":"ptr","v":"0x0e92eb0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["player","tree_header"],"undeclared":[],"n":0}} +{"ts":476715991,"hook":"Game::TechTree::ProcessResearch","mode":"compare","call_id":12,"thread":1412,"depth":0,"args":[{"t":"ptr","v":"0x0e93b570","n":"tree"},{"t":"ptr","v":"0x0e90bd70","n":"owner"},{"t":"i32","v":2,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e96ad78","n":"rng"},{"t":"i32","v":357,"n":"rng_left_in"},{"t":"list","v":[{"t":"struct","v":{"tech_id":{"t":"i32","v":18},"points":{"t":"i32","v":3087}}}],"n":"alloc"},{"t":"i32","v":0,"n":"overbudget_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":357},"next_index":{"t":"i64","v":267}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"overbudget":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9ca6b8"},"kids_end":{"t":"ptr","v":"0x0e9ca6bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9ca6b8"},"kids_end":{"t":"ptr","v":"0x0e9ca6bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9ca668"},"kids_end":{"t":"ptr","v":"0x0e9ca66c"},"kids_cap":{"t":"ptr","v":"0x0e9ca66c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":6},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9ca668"},"kids_end":{"t":"ptr","v":"0x0e9ca66c"},"kids_cap":{"t":"ptr","v":"0x0e9ca66c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":6},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe4a0"},"kids_end":{"t":"ptr","v":"0x0e8fe4ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":6000},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":6},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe4a0"},"kids_end":{"t":"ptr","v":"0x0e8fe4ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":6000},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":6},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9ca708"},"kids_end":{"t":"ptr","v":"0x0e9ca70c"},"kids_cap":{"t":"ptr","v":"0x0e9ca70c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9ca708"},"kids_end":{"t":"ptr","v":"0x0e9ca70c"},"kids_cap":{"t":"ptr","v":"0x0e9ca70c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e9ca598"},"kids_end":{"t":"ptr","v":"0x0e9ca5a0"},"kids_cap":{"t":"ptr","v":"0x0e9ca5a0"},"unk10":{"t":"ptr","v":"0x3fc00000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":6},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x3f800000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e9ca598"},"kids_end":{"t":"ptr","v":"0x0e9ca5a0"},"kids_cap":{"t":"ptr","v":"0x0e9ca5a0"},"unk10":{"t":"ptr","v":"0x3fc00000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":6},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x3f800000"}}}},"node[13]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9ca578"},"kids_end":{"t":"ptr","v":"0x0e9ca57c"},"kids_cap":{"t":"ptr","v":"0x0e9ca57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9ca578"},"kids_end":{"t":"ptr","v":"0x0e9ca57c"},"kids_cap":{"t":"ptr","v":"0x0e9ca57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":6},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":3087},"turn_available":{"t":"i32","v":6},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9ca5d8"},"kids_end":{"t":"ptr","v":"0x0e9ca5dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9ca5d8"},"kids_end":{"t":"ptr","v":"0x0e9ca5dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe4e8"},"kids_end":{"t":"ptr","v":"0x0e8fe4f4"},"kids_cap":{"t":"ptr","v":"0x0e8fe4f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe4e8"},"kids_end":{"t":"ptr","v":"0x0e8fe4f4"},"kids_cap":{"t":"ptr","v":"0x0e8fe4f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe3f8"},"kids_end":{"t":"ptr","v":"0x0e8fe404"},"kids_cap":{"t":"ptr","v":"0x0e8fe404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe3f8"},"kids_end":{"t":"ptr","v":"0x0e8fe404"},"kids_cap":{"t":"ptr","v":"0x0e8fe404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9ca738"},"kids_end":{"t":"ptr","v":"0x0e9ca740"},"kids_cap":{"t":"ptr","v":"0x0e9ca740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9ca738"},"kids_end":{"t":"ptr","v":"0x0e9ca740"},"kids_cap":{"t":"ptr","v":"0x0e9ca740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe410"},"kids_end":{"t":"ptr","v":"0x0e8fe41c"},"kids_cap":{"t":"ptr","v":"0x0e8fe41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe410"},"kids_end":{"t":"ptr","v":"0x0e8fe41c"},"kids_cap":{"t":"ptr","v":"0x0e8fe41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9ca698"},"kids_end":{"t":"ptr","v":"0x0e9ca69c"},"kids_cap":{"t":"ptr","v":"0x0e9ca69c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9ca698"},"kids_end":{"t":"ptr","v":"0x0e9ca69c"},"kids_cap":{"t":"ptr","v":"0x0e9ca69c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e9ca548"},"kids_end":{"t":"ptr","v":"0x0e9ca550"},"kids_cap":{"t":"ptr","v":"0x0e9ca550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e9ca548"},"kids_end":{"t":"ptr","v":"0x0e9ca550"},"kids_cap":{"t":"ptr","v":"0x0e9ca550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe428"},"kids_end":{"t":"ptr","v":"0x0e8fe434"},"kids_cap":{"t":"ptr","v":"0x0e8fe434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe428"},"kids_end":{"t":"ptr","v":"0x0e8fe434"},"kids_cap":{"t":"ptr","v":"0x0e8fe434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe530"},"kids_end":{"t":"ptr","v":"0x0e8fe53c"},"kids_cap":{"t":"ptr","v":"0x0e8fe53c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe530"},"kids_end":{"t":"ptr","v":"0x0e8fe53c"},"kids_cap":{"t":"ptr","v":"0x0e8fe53c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9ca628"},"kids_end":{"t":"ptr","v":"0x0e9ca62c"},"kids_cap":{"t":"ptr","v":"0x0e9ca62c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9ca628"},"kids_end":{"t":"ptr","v":"0x0e9ca62c"},"kids_cap":{"t":"ptr","v":"0x0e9ca62c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe440"},"kids_end":{"t":"ptr","v":"0x0e8fe44c"},"kids_cap":{"t":"ptr","v":"0x0e8fe44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe440"},"kids_end":{"t":"ptr","v":"0x0e8fe44c"},"kids_cap":{"t":"ptr","v":"0x0e8fe44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9ca608"},"kids_end":{"t":"ptr","v":"0x0e9ca60c"},"kids_cap":{"t":"ptr","v":"0x0e9ca60c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9ca608"},"kids_end":{"t":"ptr","v":"0x0e9ca60c"},"kids_cap":{"t":"ptr","v":"0x0e9ca60c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9ca5c8"},"kids_end":{"t":"ptr","v":"0x0e9ca5cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9ca5c8"},"kids_end":{"t":"ptr","v":"0x0e9ca5cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9ca6e8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9ca6e8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9ca558"},"kids_end":{"t":"ptr","v":"0x0e9ca55c"},"kids_cap":{"t":"ptr","v":"0x0e9ca55c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9ca558"},"kids_end":{"t":"ptr","v":"0x0e9ca55c"},"kids_cap":{"t":"ptr","v":"0x0e9ca55c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe458"},"kids_end":{"t":"ptr","v":"0x0e8fe464"},"kids_cap":{"t":"ptr","v":"0x0e8fe464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe458"},"kids_end":{"t":"ptr","v":"0x0e8fe464"},"kids_cap":{"t":"ptr","v":"0x0e8fe464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9ca5a8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9ca5a8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9ca5b8"},"kids_end":{"t":"ptr","v":"0x0e9ca5bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9ca5b8"},"kids_end":{"t":"ptr","v":"0x0e9ca5bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9ca6a8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9ca6a8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9ca5e8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9ca5e8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9ca5f8"},"kids_end":{"t":"ptr","v":"0x0e9ca5fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9ca5f8"},"kids_end":{"t":"ptr","v":"0x0e9ca5fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9ca568"},"kids_end":{"t":"ptr","v":"0x0e9ca56c"},"kids_cap":{"t":"ptr","v":"0x0e9ca56c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9ca568"},"kids_end":{"t":"ptr","v":"0x0e9ca56c"},"kids_cap":{"t":"ptr","v":"0x0e9ca56c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9ca588"},"kids_end":{"t":"ptr","v":"0x0e9ca58c"},"kids_cap":{"t":"ptr","v":"0x0e9ca58c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9ca588"},"kids_end":{"t":"ptr","v":"0x0e9ca58c"},"kids_cap":{"t":"ptr","v":"0x0e9ca58c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe470"},"kids_end":{"t":"ptr","v":"0x0e8fe47c"},"kids_cap":{"t":"ptr","v":"0x0e8fe47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe470"},"kids_end":{"t":"ptr","v":"0x0e8fe47c"},"kids_cap":{"t":"ptr","v":"0x0e8fe47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e9ca688"},"kids_end":{"t":"ptr","v":"0x0e9ca690"},"kids_cap":{"t":"ptr","v":"0x0e9ca690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e9ca688"},"kids_end":{"t":"ptr","v":"0x0e9ca690"},"kids_cap":{"t":"ptr","v":"0x0e9ca690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9ca618"},"kids_end":{"t":"ptr","v":"0x0e9ca61c"},"kids_cap":{"t":"ptr","v":"0x0e9ca61c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9ca618"},"kids_end":{"t":"ptr","v":"0x0e9ca61c"},"kids_cap":{"t":"ptr","v":"0x0e9ca61c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9ca728"},"kids_end":{"t":"ptr","v":"0x0e9ca730"},"kids_cap":{"t":"ptr","v":"0x0e9ca730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9ca728"},"kids_end":{"t":"ptr","v":"0x0e9ca730"},"kids_cap":{"t":"ptr","v":"0x0e9ca730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9ca638"},"kids_end":{"t":"ptr","v":"0x0e9ca63c"},"kids_cap":{"t":"ptr","v":"0x0e9ca63c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9ca638"},"kids_end":{"t":"ptr","v":"0x0e9ca63c"},"kids_cap":{"t":"ptr","v":"0x0e9ca63c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e9ca6c8"},"kids_end":{"t":"ptr","v":"0x0e9ca6cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e9ca6c8"},"kids_end":{"t":"ptr","v":"0x0e9ca6cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fe6e0"},"kids_end":{"t":"ptr","v":"0x0e8fe6ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fe6e0"},"kids_end":{"t":"ptr","v":"0x0e8fe6ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e99b508"},"kids_end":{"t":"ptr","v":"0x0e99b528"},"kids_cap":{"t":"ptr","v":"0x0e99b528"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e99b508"},"kids_end":{"t":"ptr","v":"0x0e99b528"},"kids_cap":{"t":"ptr","v":"0x0e99b528"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9ca648"},"kids_end":{"t":"ptr","v":"0x0e9ca64c"},"kids_cap":{"t":"ptr","v":"0x0e9ca64c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9ca648"},"kids_end":{"t":"ptr","v":"0x0e9ca64c"},"kids_cap":{"t":"ptr","v":"0x0e9ca64c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9ca658"},"kids_end":{"t":"ptr","v":"0x0e9ca65c"},"kids_cap":{"t":"ptr","v":"0x0e9ca65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9ca658"},"kids_end":{"t":"ptr","v":"0x0e9ca65c"},"kids_cap":{"t":"ptr","v":"0x0e9ca65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e9ca718"},"kids_end":{"t":"ptr","v":"0x0e9ca720"},"kids_cap":{"t":"ptr","v":"0x0e9ca720"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e9ca718"},"kids_end":{"t":"ptr","v":"0x0e9ca720"},"kids_cap":{"t":"ptr","v":"0x0e9ca720"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9ca678"},"kids_end":{"t":"ptr","v":"0x0e9ca67c"},"kids_cap":{"t":"ptr","v":"0x0e9ca67c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9ca678"},"kids_end":{"t":"ptr","v":"0x0e9ca67c"},"kids_cap":{"t":"ptr","v":"0x0e9ca67c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9ca6d8"},"kids_end":{"t":"ptr","v":"0x0e9ca6dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9ca6d8"},"kids_end":{"t":"ptr","v":"0x0e9ca6dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9ca6f8"},"kids_end":{"t":"ptr","v":"0x0e9ca6fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9ca6f8"},"kids_end":{"t":"ptr","v":"0x0e9ca6fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9ca878"},"kids_end":{"t":"ptr","v":"0x0e9ca87c"},"kids_cap":{"t":"ptr","v":"0x0e9ca87c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9ca878"},"kids_end":{"t":"ptr","v":"0x0e9ca87c"},"kids_cap":{"t":"ptr","v":"0x0e9ca87c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9ca768"},"kids_end":{"t":"ptr","v":"0x0e9ca770"},"kids_cap":{"t":"ptr","v":"0x0e9ca770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9ca768"},"kids_end":{"t":"ptr","v":"0x0e9ca770"},"kids_cap":{"t":"ptr","v":"0x0e9ca770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9ca858"},"kids_end":{"t":"ptr","v":"0x0e9ca85c"},"kids_cap":{"t":"ptr","v":"0x0e9ca85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9ca858"},"kids_end":{"t":"ptr","v":"0x0e9ca85c"},"kids_cap":{"t":"ptr","v":"0x0e9ca85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88ce78"},"kids_end":{"t":"ptr","v":"0x0e88ce8c"},"kids_cap":{"t":"ptr","v":"0x0e88ce8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88ce78"},"kids_end":{"t":"ptr","v":"0x0e88ce8c"},"kids_cap":{"t":"ptr","v":"0x0e88ce8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe650"},"kids_end":{"t":"ptr","v":"0x0e8fe65c"},"kids_cap":{"t":"ptr","v":"0x0e8fe65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe650"},"kids_end":{"t":"ptr","v":"0x0e8fe65c"},"kids_cap":{"t":"ptr","v":"0x0e8fe65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9ca828"},"kids_end":{"t":"ptr","v":"0x0e9ca82c"},"kids_cap":{"t":"ptr","v":"0x0e9ca82c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9ca828"},"kids_end":{"t":"ptr","v":"0x0e9ca82c"},"kids_cap":{"t":"ptr","v":"0x0e9ca82c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9ca868"},"kids_end":{"t":"ptr","v":"0x0e9ca86c"},"kids_cap":{"t":"ptr","v":"0x0e9ca86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9ca868"},"kids_end":{"t":"ptr","v":"0x0e9ca86c"},"kids_cap":{"t":"ptr","v":"0x0e9ca86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9ca8b8"},"kids_end":{"t":"ptr","v":"0x0e9ca8bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9ca8b8"},"kids_end":{"t":"ptr","v":"0x0e9ca8bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9ca788"},"kids_end":{"t":"ptr","v":"0x0e9ca78c"},"kids_cap":{"t":"ptr","v":"0x0e9ca78c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9ca788"},"kids_end":{"t":"ptr","v":"0x0e9ca78c"},"kids_cap":{"t":"ptr","v":"0x0e9ca78c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe668"},"kids_end":{"t":"ptr","v":"0x0e8fe674"},"kids_cap":{"t":"ptr","v":"0x0e8fe674"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe668"},"kids_end":{"t":"ptr","v":"0x0e8fe674"},"kids_cap":{"t":"ptr","v":"0x0e8fe674"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9ca798"},"kids_end":{"t":"ptr","v":"0x0e9ca79c"},"kids_cap":{"t":"ptr","v":"0x0e9ca79c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9ca798"},"kids_end":{"t":"ptr","v":"0x0e9ca79c"},"kids_cap":{"t":"ptr","v":"0x0e9ca79c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe710"},"kids_end":{"t":"ptr","v":"0x0e8fe71c"},"kids_cap":{"t":"ptr","v":"0x0e8fe71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe710"},"kids_end":{"t":"ptr","v":"0x0e8fe71c"},"kids_cap":{"t":"ptr","v":"0x0e8fe71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e9ca8d8"},"kids_end":{"t":"ptr","v":"0x0e9ca8e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e9ca8d8"},"kids_end":{"t":"ptr","v":"0x0e9ca8e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe680"},"kids_end":{"t":"ptr","v":"0x0e8fe690"},"kids_cap":{"t":"ptr","v":"0x0e8fe690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe680"},"kids_end":{"t":"ptr","v":"0x0e8fe690"},"kids_cap":{"t":"ptr","v":"0x0e8fe690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9ca758"},"kids_end":{"t":"ptr","v":"0x0e9ca760"},"kids_cap":{"t":"ptr","v":"0x0e9ca760"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9ca758"},"kids_end":{"t":"ptr","v":"0x0e9ca760"},"kids_cap":{"t":"ptr","v":"0x0e9ca760"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9ca928"},"kids_end":{"t":"ptr","v":"0x0e9ca92c"},"kids_cap":{"t":"ptr","v":"0x0e9ca92c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9ca928"},"kids_end":{"t":"ptr","v":"0x0e9ca92c"},"kids_cap":{"t":"ptr","v":"0x0e9ca92c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe7b8"},"kids_end":{"t":"ptr","v":"0x0e8fe7c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe7c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe7b8"},"kids_end":{"t":"ptr","v":"0x0e8fe7c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe7c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9ca778"},"kids_end":{"t":"ptr","v":"0x0e9ca77c"},"kids_cap":{"t":"ptr","v":"0x0e9ca77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9ca778"},"kids_end":{"t":"ptr","v":"0x0e9ca77c"},"kids_cap":{"t":"ptr","v":"0x0e9ca77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9ca7a8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9ca7a8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e9ca7b8"},"kids_end":{"t":"ptr","v":"0x0e9ca7bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e9ca7b8"},"kids_end":{"t":"ptr","v":"0x0e9ca7bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe698"},"kids_end":{"t":"ptr","v":"0x0e8fe6a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":7500},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":4},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":2},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe698"},"kids_end":{"t":"ptr","v":"0x0e8fe6a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":7500},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":4},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":2},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9ca7c8"},"kids_end":{"t":"ptr","v":"0x0e9ca7cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9ca7c8"},"kids_end":{"t":"ptr","v":"0x0e9ca7cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9ca918"},"kids_end":{"t":"ptr","v":"0x0e9ca91c"},"kids_cap":{"t":"ptr","v":"0x0e9ca91c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9ca918"},"kids_end":{"t":"ptr","v":"0x0e9ca91c"},"kids_cap":{"t":"ptr","v":"0x0e9ca91c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e9ca838"},"kids_end":{"t":"ptr","v":"0x0e9ca83c"},"kids_cap":{"t":"ptr","v":"0x0e9ca83c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e9ca838"},"kids_end":{"t":"ptr","v":"0x0e9ca83c"},"kids_cap":{"t":"ptr","v":"0x0e9ca83c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9ca748"},"kids_end":{"t":"ptr","v":"0x0e9ca750"},"kids_cap":{"t":"ptr","v":"0x0e9ca750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9ca748"},"kids_end":{"t":"ptr","v":"0x0e9ca750"},"kids_cap":{"t":"ptr","v":"0x0e9ca750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9ca8a8"},"kids_end":{"t":"ptr","v":"0x0e9ca8b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9ca8a8"},"kids_end":{"t":"ptr","v":"0x0e9ca8b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9ca938"},"kids_end":{"t":"ptr","v":"0x0e9ca93c"},"kids_cap":{"t":"ptr","v":"0x0e9ca93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9ca938"},"kids_end":{"t":"ptr","v":"0x0e9ca93c"},"kids_cap":{"t":"ptr","v":"0x0e9ca93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9ca848"},"kids_end":{"t":"ptr","v":"0x0e9ca84c"},"kids_cap":{"t":"ptr","v":"0x0e9ca84c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9ca848"},"kids_end":{"t":"ptr","v":"0x0e9ca84c"},"kids_cap":{"t":"ptr","v":"0x0e9ca84c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9ca888"},"kids_end":{"t":"ptr","v":"0x0e9ca88c"},"kids_cap":{"t":"ptr","v":"0x0e9ca88c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9ca888"},"kids_end":{"t":"ptr","v":"0x0e9ca88c"},"kids_cap":{"t":"ptr","v":"0x0e9ca88c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9ca8c8"},"kids_end":{"t":"ptr","v":"0x0e9ca8cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9ca8c8"},"kids_end":{"t":"ptr","v":"0x0e9ca8cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9ca898"},"kids_end":{"t":"ptr","v":"0x0e9ca89c"},"kids_cap":{"t":"ptr","v":"0x0e9ca89c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9ca898"},"kids_end":{"t":"ptr","v":"0x0e9ca89c"},"kids_cap":{"t":"ptr","v":"0x0e9ca89c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9ca8e8"},"kids_end":{"t":"ptr","v":"0x0e9ca8ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca8ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9ca8e8"},"kids_end":{"t":"ptr","v":"0x0e9ca8ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca8ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9ca7e8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9ca7e8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9ca8f8"},"kids_end":{"t":"ptr","v":"0x0e9ca8fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9ca8f8"},"kids_end":{"t":"ptr","v":"0x0e9ca8fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e9ca818"},"kids_end":{"t":"ptr","v":"0x0e9ca81c"},"kids_cap":{"t":"ptr","v":"0x0e9ca81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e9ca818"},"kids_end":{"t":"ptr","v":"0x0e9ca81c"},"kids_cap":{"t":"ptr","v":"0x0e9ca81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e9ca7d8"},"kids_end":{"t":"ptr","v":"0x0e9ca7e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e9ca7d8"},"kids_end":{"t":"ptr","v":"0x0e9ca7e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9ca908"},"kids_end":{"t":"ptr","v":"0x0e9ca910"},"kids_cap":{"t":"ptr","v":"0x0e9ca910"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9ca908"},"kids_end":{"t":"ptr","v":"0x0e9ca910"},"kids_cap":{"t":"ptr","v":"0x0e9ca910"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9ca7f8"},"kids_end":{"t":"ptr","v":"0x0e9ca7fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9ca7f8"},"kids_end":{"t":"ptr","v":"0x0e9ca7fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9ca808"},"kids_end":{"t":"ptr","v":"0x0e9ca810"},"kids_cap":{"t":"ptr","v":"0x0e9ca810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9ca808"},"kids_end":{"t":"ptr","v":"0x0e9ca810"},"kids_cap":{"t":"ptr","v":"0x0e9ca810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9ca9a8"},"kids_end":{"t":"ptr","v":"0x0e9ca9b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9ca9a8"},"kids_end":{"t":"ptr","v":"0x0e9ca9b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9ca9b8"},"kids_end":{"t":"ptr","v":"0x0e9ca9bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9ca9b8"},"kids_end":{"t":"ptr","v":"0x0e9ca9bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe788"},"kids_end":{"t":"ptr","v":"0x0e8fe794"},"kids_cap":{"t":"ptr","v":"0x0e8fe794"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe788"},"kids_end":{"t":"ptr","v":"0x0e8fe794"},"kids_cap":{"t":"ptr","v":"0x0e8fe794"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9caae8"},"kids_end":{"t":"ptr","v":"0x0e9caaec"},"kids_cap":{"t":"ptr","v":"0x0e9caaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9caae8"},"kids_end":{"t":"ptr","v":"0x0e9caaec"},"kids_cap":{"t":"ptr","v":"0x0e9caaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e9caaa8"},"kids_end":{"t":"ptr","v":"0x0e9caab0"},"kids_cap":{"t":"ptr","v":"0x0e9caab0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e9caaa8"},"kids_end":{"t":"ptr","v":"0x0e9caab0"},"kids_cap":{"t":"ptr","v":"0x0e9caab0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9caa38"},"kids_end":{"t":"ptr","v":"0x0e9caa3c"},"kids_cap":{"t":"ptr","v":"0x0e9caa3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9caa38"},"kids_end":{"t":"ptr","v":"0x0e9caa3c"},"kids_cap":{"t":"ptr","v":"0x0e9caa3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9caac8"},"kids_end":{"t":"ptr","v":"0x0e9caacc"},"kids_cap":{"t":"ptr","v":"0x0e9caacc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9caac8"},"kids_end":{"t":"ptr","v":"0x0e9caacc"},"kids_cap":{"t":"ptr","v":"0x0e9caacc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe860"},"kids_end":{"t":"ptr","v":"0x0e8fe870"},"kids_cap":{"t":"ptr","v":"0x0e8fe870"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe860"},"kids_end":{"t":"ptr","v":"0x0e8fe870"},"kids_cap":{"t":"ptr","v":"0x0e8fe870"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e9caa98"},"kids_end":{"t":"ptr","v":"0x0e9caaa0"},"kids_cap":{"t":"ptr","v":"0x0e9caaa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e9caa98"},"kids_end":{"t":"ptr","v":"0x0e9caaa0"},"kids_cap":{"t":"ptr","v":"0x0e9caaa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9ca988"},"kids_end":{"t":"ptr","v":"0x0e9ca98c"},"kids_cap":{"t":"ptr","v":"0x0e9ca98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9ca988"},"kids_end":{"t":"ptr","v":"0x0e9ca98c"},"kids_cap":{"t":"ptr","v":"0x0e9ca98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe878"},"kids_end":{"t":"ptr","v":"0x0e8fe888"},"kids_cap":{"t":"ptr","v":"0x0e8fe888"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe878"},"kids_end":{"t":"ptr","v":"0x0e8fe888"},"kids_cap":{"t":"ptr","v":"0x0e8fe888"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9cab28"},"kids_end":{"t":"ptr","v":"0x0e9cab30"},"kids_cap":{"t":"ptr","v":"0x0e9cab30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9cab28"},"kids_end":{"t":"ptr","v":"0x0e9cab30"},"kids_cap":{"t":"ptr","v":"0x0e9cab30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9caaf8"},"kids_end":{"t":"ptr","v":"0x0e9caafc"},"kids_cap":{"t":"ptr","v":"0x0e9caafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9caaf8"},"kids_end":{"t":"ptr","v":"0x0e9caafc"},"kids_cap":{"t":"ptr","v":"0x0e9caafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e9cab38"},"kids_end":{"t":"ptr","v":"0x0e9cab3c"},"kids_cap":{"t":"ptr","v":"0x0e9cab3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e9cab38"},"kids_end":{"t":"ptr","v":"0x0e9cab3c"},"kids_cap":{"t":"ptr","v":"0x0e9cab3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e9cab08"},"kids_end":{"t":"ptr","v":"0x0e9cab10"},"kids_cap":{"t":"ptr","v":"0x0e9cab10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e9cab08"},"kids_end":{"t":"ptr","v":"0x0e9cab10"},"kids_cap":{"t":"ptr","v":"0x0e9cab10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9caa08"},"kids_end":{"t":"ptr","v":"0x0e9caa0c"},"kids_cap":{"t":"ptr","v":"0x0e9caa0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9caa08"},"kids_end":{"t":"ptr","v":"0x0e9caa0c"},"kids_cap":{"t":"ptr","v":"0x0e9caa0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9ca9c8"},"kids_end":{"t":"ptr","v":"0x0e9ca9d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9ca9c8"},"kids_end":{"t":"ptr","v":"0x0e9ca9d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e8fe7d0"},"kids_end":{"t":"ptr","v":"0x0e8fe7e0"},"kids_cap":{"t":"ptr","v":"0x0e8fe7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e8fe7d0"},"kids_end":{"t":"ptr","v":"0x0e8fe7e0"},"kids_cap":{"t":"ptr","v":"0x0e8fe7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9ca9d8"},"kids_end":{"t":"ptr","v":"0x0e9ca9dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9ca9d8"},"kids_end":{"t":"ptr","v":"0x0e9ca9dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9caa58"},"kids_end":{"t":"ptr","v":"0x0e9caa5c"},"kids_cap":{"t":"ptr","v":"0x0e9caa5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9caa58"},"kids_end":{"t":"ptr","v":"0x0e9caa5c"},"kids_cap":{"t":"ptr","v":"0x0e9caa5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9caa48"},"kids_end":{"t":"ptr","v":"0x0e9caa50"},"kids_cap":{"t":"ptr","v":"0x0e9caa50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9caa48"},"kids_end":{"t":"ptr","v":"0x0e9caa50"},"kids_cap":{"t":"ptr","v":"0x0e9caa50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9caa68"},"kids_end":{"t":"ptr","v":"0x0e9caa6c"},"kids_cap":{"t":"ptr","v":"0x0e9caa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9caa68"},"kids_end":{"t":"ptr","v":"0x0e9caa6c"},"kids_cap":{"t":"ptr","v":"0x0e9caa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9ca9e8"},"kids_end":{"t":"ptr","v":"0x0e9ca9ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca9ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9ca9e8"},"kids_end":{"t":"ptr","v":"0x0e9ca9ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca9ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe590"},"kids_end":{"t":"ptr","v":"0x0e8fe59c"},"kids_cap":{"t":"ptr","v":"0x0e8fe59c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe590"},"kids_end":{"t":"ptr","v":"0x0e8fe59c"},"kids_cap":{"t":"ptr","v":"0x0e8fe59c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe5f0"},"kids_end":{"t":"ptr","v":"0x0e8fe5fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe5f0"},"kids_end":{"t":"ptr","v":"0x0e8fe5fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe6b0"},"kids_end":{"t":"ptr","v":"0x0e8fe6bc"},"kids_cap":{"t":"ptr","v":"0x0e8fe6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe6b0"},"kids_end":{"t":"ptr","v":"0x0e8fe6bc"},"kids_cap":{"t":"ptr","v":"0x0e8fe6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe608"},"kids_end":{"t":"ptr","v":"0x0e8fe614"},"kids_cap":{"t":"ptr","v":"0x0e8fe614"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe608"},"kids_end":{"t":"ptr","v":"0x0e8fe614"},"kids_cap":{"t":"ptr","v":"0x0e8fe614"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe5a8"},"kids_end":{"t":"ptr","v":"0x0e8fe5b4"},"kids_cap":{"t":"ptr","v":"0x0e8fe5b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe5a8"},"kids_end":{"t":"ptr","v":"0x0e8fe5b4"},"kids_cap":{"t":"ptr","v":"0x0e8fe5b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88cdd8"},"kids_end":{"t":"ptr","v":"0x0e88cdf0"},"kids_cap":{"t":"ptr","v":"0x0e88cdf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88cdd8"},"kids_end":{"t":"ptr","v":"0x0e88cdf0"},"kids_cap":{"t":"ptr","v":"0x0e88cdf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e9caab8"},"kids_end":{"t":"ptr","v":"0x0e9caac0"},"kids_cap":{"t":"ptr","v":"0x0e9caac0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e9caab8"},"kids_end":{"t":"ptr","v":"0x0e9caac0"},"kids_cap":{"t":"ptr","v":"0x0e9caac0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9cab18"},"kids_end":{"t":"ptr","v":"0x0e9cab20"},"kids_cap":{"t":"ptr","v":"0x0e9cab20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9cab18"},"kids_end":{"t":"ptr","v":"0x0e9cab20"},"kids_cap":{"t":"ptr","v":"0x0e9cab20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9caad8"},"kids_end":{"t":"ptr","v":"0x0e9caae0"},"kids_cap":{"t":"ptr","v":"0x0e9caae0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9caad8"},"kids_end":{"t":"ptr","v":"0x0e9caae0"},"kids_cap":{"t":"ptr","v":"0x0e9caae0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9ca958"},"kids_end":{"t":"ptr","v":"0x0e9ca960"},"kids_cap":{"t":"ptr","v":"0x0e9ca960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9ca958"},"kids_end":{"t":"ptr","v":"0x0e9ca960"},"kids_cap":{"t":"ptr","v":"0x0e9ca960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9caa78"},"kids_end":{"t":"ptr","v":"0x0e9caa7c"},"kids_cap":{"t":"ptr","v":"0x0e9caa7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9caa78"},"kids_end":{"t":"ptr","v":"0x0e9caa7c"},"kids_cap":{"t":"ptr","v":"0x0e9caa7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9caa88"},"kids_end":{"t":"ptr","v":"0x0e9caa8c"},"kids_cap":{"t":"ptr","v":"0x0e9caa8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9caa88"},"kids_end":{"t":"ptr","v":"0x0e9caa8c"},"kids_cap":{"t":"ptr","v":"0x0e9caa8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca998"},"kids_end":{"t":"ptr","v":"0x0e9ca99c"},"kids_cap":{"t":"ptr","v":"0x0e9ca99c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca998"},"kids_end":{"t":"ptr","v":"0x0e9ca99c"},"kids_cap":{"t":"ptr","v":"0x0e9ca99c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9ca948"},"kids_end":{"t":"ptr","v":"0x0e9ca94c"},"kids_cap":{"t":"ptr","v":"0x0e9ca94c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9ca948"},"kids_end":{"t":"ptr","v":"0x0e9ca94c"},"kids_cap":{"t":"ptr","v":"0x0e9ca94c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca968"},"kids_end":{"t":"ptr","v":"0x0e9ca96c"},"kids_cap":{"t":"ptr","v":"0x0e9ca96c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca968"},"kids_end":{"t":"ptr","v":"0x0e9ca96c"},"kids_cap":{"t":"ptr","v":"0x0e9ca96c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca9f8"},"kids_end":{"t":"ptr","v":"0x0e9ca9fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca9f8"},"kids_end":{"t":"ptr","v":"0x0e9ca9fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca978"},"kids_end":{"t":"ptr","v":"0x0e9ca97c"},"kids_cap":{"t":"ptr","v":"0x0e9ca97c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca978"},"kids_end":{"t":"ptr","v":"0x0e9ca97c"},"kids_cap":{"t":"ptr","v":"0x0e9ca97c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9caa18"},"kids_end":{"t":"ptr","v":"0x0e9caa1c"},"kids_cap":{"t":"ptr","v":"0x0e9caa1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9caa18"},"kids_end":{"t":"ptr","v":"0x0e9caa1c"},"kids_cap":{"t":"ptr","v":"0x0e9caa1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9caa28"},"kids_end":{"t":"ptr","v":"0x0e9caa2c"},"kids_cap":{"t":"ptr","v":"0x0e9caa2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9caa28"},"kids_end":{"t":"ptr","v":"0x0e9caa2c"},"kids_cap":{"t":"ptr","v":"0x0e9caa2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9cacd8"},"kids_end":{"t":"ptr","v":"0x0e9cacdc"},"kids_cap":{"t":"ptr","v":"0x0e9cacdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9cacd8"},"kids_end":{"t":"ptr","v":"0x0e9cacdc"},"kids_cap":{"t":"ptr","v":"0x0e9cacdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9caca8"},"kids_end":{"t":"ptr","v":"0x0e9cacac"},"kids_cap":{"t":"ptr","v":"0x0e9cacac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9caca8"},"kids_end":{"t":"ptr","v":"0x0e9cacac"},"kids_cap":{"t":"ptr","v":"0x0e9cacac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"before":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":144},"next_id":{"t":"i32","v":14},"vec_begin":{"t":"ptr","v":"0x366cba50"},"vec_end":{"t":"ptr","v":"0x366cbae0"},"vec_cap":{"t":"ptr","v":"0x366cbae0"}}},"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":144},"next_id":{"t":"i32","v":14},"vec_begin":{"t":"ptr","v":"0x366cba50"},"vec_end":{"t":"ptr","v":"0x366cbae0"},"vec_cap":{"t":"ptr","v":"0x366cbae0"}}}}},"ours":{"ret":null,"side":{"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"overbudget":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9ca6b8"},"kids_end":{"t":"ptr","v":"0x0e9ca6bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9ca668"},"kids_end":{"t":"ptr","v":"0x0e9ca66c"},"kids_cap":{"t":"ptr","v":"0x0e9ca66c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":6},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe4a0"},"kids_end":{"t":"ptr","v":"0x0e8fe4ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":6000},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":6},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9ca708"},"kids_end":{"t":"ptr","v":"0x0e9ca70c"},"kids_cap":{"t":"ptr","v":"0x0e9ca70c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e9ca598"},"kids_end":{"t":"ptr","v":"0x0e9ca5a0"},"kids_cap":{"t":"ptr","v":"0x0e9ca5a0"},"unk10":{"t":"ptr","v":"0x3fc00000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":6},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x3f800000"}}}},"node[13]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9ca578"},"kids_end":{"t":"ptr","v":"0x0e9ca57c"},"kids_cap":{"t":"ptr","v":"0x0e9ca57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":3087},"turn_available":{"t":"i32","v":6},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9ca5d8"},"kids_end":{"t":"ptr","v":"0x0e9ca5dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe4e8"},"kids_end":{"t":"ptr","v":"0x0e8fe4f4"},"kids_cap":{"t":"ptr","v":"0x0e8fe4f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe3f8"},"kids_end":{"t":"ptr","v":"0x0e8fe404"},"kids_cap":{"t":"ptr","v":"0x0e8fe404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9ca738"},"kids_end":{"t":"ptr","v":"0x0e9ca740"},"kids_cap":{"t":"ptr","v":"0x0e9ca740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe410"},"kids_end":{"t":"ptr","v":"0x0e8fe41c"},"kids_cap":{"t":"ptr","v":"0x0e8fe41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9ca698"},"kids_end":{"t":"ptr","v":"0x0e9ca69c"},"kids_cap":{"t":"ptr","v":"0x0e9ca69c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e9ca548"},"kids_end":{"t":"ptr","v":"0x0e9ca550"},"kids_cap":{"t":"ptr","v":"0x0e9ca550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe428"},"kids_end":{"t":"ptr","v":"0x0e8fe434"},"kids_cap":{"t":"ptr","v":"0x0e8fe434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe530"},"kids_end":{"t":"ptr","v":"0x0e8fe53c"},"kids_cap":{"t":"ptr","v":"0x0e8fe53c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9ca628"},"kids_end":{"t":"ptr","v":"0x0e9ca62c"},"kids_cap":{"t":"ptr","v":"0x0e9ca62c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe440"},"kids_end":{"t":"ptr","v":"0x0e8fe44c"},"kids_cap":{"t":"ptr","v":"0x0e8fe44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9ca608"},"kids_end":{"t":"ptr","v":"0x0e9ca60c"},"kids_cap":{"t":"ptr","v":"0x0e9ca60c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9ca5c8"},"kids_end":{"t":"ptr","v":"0x0e9ca5cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9ca6e8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9ca558"},"kids_end":{"t":"ptr","v":"0x0e9ca55c"},"kids_cap":{"t":"ptr","v":"0x0e9ca55c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe458"},"kids_end":{"t":"ptr","v":"0x0e8fe464"},"kids_cap":{"t":"ptr","v":"0x0e8fe464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9ca5a8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9ca5b8"},"kids_end":{"t":"ptr","v":"0x0e9ca5bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9ca6a8"},"kids_end":{"t":"ptr","v":"0x0e9ca6ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca6ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9ca5e8"},"kids_end":{"t":"ptr","v":"0x0e9ca5ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca5ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9ca5f8"},"kids_end":{"t":"ptr","v":"0x0e9ca5fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9ca568"},"kids_end":{"t":"ptr","v":"0x0e9ca56c"},"kids_cap":{"t":"ptr","v":"0x0e9ca56c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9ca588"},"kids_end":{"t":"ptr","v":"0x0e9ca58c"},"kids_cap":{"t":"ptr","v":"0x0e9ca58c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe470"},"kids_end":{"t":"ptr","v":"0x0e8fe47c"},"kids_cap":{"t":"ptr","v":"0x0e8fe47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e9ca688"},"kids_end":{"t":"ptr","v":"0x0e9ca690"},"kids_cap":{"t":"ptr","v":"0x0e9ca690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9ca618"},"kids_end":{"t":"ptr","v":"0x0e9ca61c"},"kids_cap":{"t":"ptr","v":"0x0e9ca61c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9ca728"},"kids_end":{"t":"ptr","v":"0x0e9ca730"},"kids_cap":{"t":"ptr","v":"0x0e9ca730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9ca638"},"kids_end":{"t":"ptr","v":"0x0e9ca63c"},"kids_cap":{"t":"ptr","v":"0x0e9ca63c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e9ca6c8"},"kids_end":{"t":"ptr","v":"0x0e9ca6cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fe6e0"},"kids_end":{"t":"ptr","v":"0x0e8fe6ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe6ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e99b508"},"kids_end":{"t":"ptr","v":"0x0e99b528"},"kids_cap":{"t":"ptr","v":"0x0e99b528"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9ca648"},"kids_end":{"t":"ptr","v":"0x0e9ca64c"},"kids_cap":{"t":"ptr","v":"0x0e9ca64c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9ca658"},"kids_end":{"t":"ptr","v":"0x0e9ca65c"},"kids_cap":{"t":"ptr","v":"0x0e9ca65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e9ca718"},"kids_end":{"t":"ptr","v":"0x0e9ca720"},"kids_cap":{"t":"ptr","v":"0x0e9ca720"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9ca678"},"kids_end":{"t":"ptr","v":"0x0e9ca67c"},"kids_cap":{"t":"ptr","v":"0x0e9ca67c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9ca6d8"},"kids_end":{"t":"ptr","v":"0x0e9ca6dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9ca6f8"},"kids_end":{"t":"ptr","v":"0x0e9ca6fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca6fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9ca878"},"kids_end":{"t":"ptr","v":"0x0e9ca87c"},"kids_cap":{"t":"ptr","v":"0x0e9ca87c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9ca768"},"kids_end":{"t":"ptr","v":"0x0e9ca770"},"kids_cap":{"t":"ptr","v":"0x0e9ca770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9ca858"},"kids_end":{"t":"ptr","v":"0x0e9ca85c"},"kids_cap":{"t":"ptr","v":"0x0e9ca85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88ce78"},"kids_end":{"t":"ptr","v":"0x0e88ce8c"},"kids_cap":{"t":"ptr","v":"0x0e88ce8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe650"},"kids_end":{"t":"ptr","v":"0x0e8fe65c"},"kids_cap":{"t":"ptr","v":"0x0e8fe65c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9ca828"},"kids_end":{"t":"ptr","v":"0x0e9ca82c"},"kids_cap":{"t":"ptr","v":"0x0e9ca82c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9ca868"},"kids_end":{"t":"ptr","v":"0x0e9ca86c"},"kids_cap":{"t":"ptr","v":"0x0e9ca86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9ca8b8"},"kids_end":{"t":"ptr","v":"0x0e9ca8bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9ca788"},"kids_end":{"t":"ptr","v":"0x0e9ca78c"},"kids_cap":{"t":"ptr","v":"0x0e9ca78c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe668"},"kids_end":{"t":"ptr","v":"0x0e8fe674"},"kids_cap":{"t":"ptr","v":"0x0e8fe674"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9ca798"},"kids_end":{"t":"ptr","v":"0x0e9ca79c"},"kids_cap":{"t":"ptr","v":"0x0e9ca79c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe710"},"kids_end":{"t":"ptr","v":"0x0e8fe71c"},"kids_cap":{"t":"ptr","v":"0x0e8fe71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e9ca8d8"},"kids_end":{"t":"ptr","v":"0x0e9ca8e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe680"},"kids_end":{"t":"ptr","v":"0x0e8fe690"},"kids_cap":{"t":"ptr","v":"0x0e8fe690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9ca758"},"kids_end":{"t":"ptr","v":"0x0e9ca760"},"kids_cap":{"t":"ptr","v":"0x0e9ca760"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9ca928"},"kids_end":{"t":"ptr","v":"0x0e9ca92c"},"kids_cap":{"t":"ptr","v":"0x0e9ca92c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe7b8"},"kids_end":{"t":"ptr","v":"0x0e8fe7c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe7c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9ca778"},"kids_end":{"t":"ptr","v":"0x0e9ca77c"},"kids_cap":{"t":"ptr","v":"0x0e9ca77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9ca7a8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ac"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e9ca7b8"},"kids_end":{"t":"ptr","v":"0x0e9ca7bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":4},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe698"},"kids_end":{"t":"ptr","v":"0x0e8fe6a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":7500},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":4},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":2},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9ca7c8"},"kids_end":{"t":"ptr","v":"0x0e9ca7cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9ca918"},"kids_end":{"t":"ptr","v":"0x0e9ca91c"},"kids_cap":{"t":"ptr","v":"0x0e9ca91c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e9ca838"},"kids_end":{"t":"ptr","v":"0x0e9ca83c"},"kids_cap":{"t":"ptr","v":"0x0e9ca83c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9ca748"},"kids_end":{"t":"ptr","v":"0x0e9ca750"},"kids_cap":{"t":"ptr","v":"0x0e9ca750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9ca8a8"},"kids_end":{"t":"ptr","v":"0x0e9ca8b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca8b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9ca938"},"kids_end":{"t":"ptr","v":"0x0e9ca93c"},"kids_cap":{"t":"ptr","v":"0x0e9ca93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9ca848"},"kids_end":{"t":"ptr","v":"0x0e9ca84c"},"kids_cap":{"t":"ptr","v":"0x0e9ca84c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9ca888"},"kids_end":{"t":"ptr","v":"0x0e9ca88c"},"kids_cap":{"t":"ptr","v":"0x0e9ca88c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9ca8c8"},"kids_end":{"t":"ptr","v":"0x0e9ca8cc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9ca898"},"kids_end":{"t":"ptr","v":"0x0e9ca89c"},"kids_cap":{"t":"ptr","v":"0x0e9ca89c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9ca8e8"},"kids_end":{"t":"ptr","v":"0x0e9ca8ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca8ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9ca7e8"},"kids_end":{"t":"ptr","v":"0x0e9ca7ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9ca8f8"},"kids_end":{"t":"ptr","v":"0x0e9ca8fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e9ca818"},"kids_end":{"t":"ptr","v":"0x0e9ca81c"},"kids_cap":{"t":"ptr","v":"0x0e9ca81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e9ca7d8"},"kids_end":{"t":"ptr","v":"0x0e9ca7e0"},"kids_cap":{"t":"ptr","v":"0x0e9ca7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9ca908"},"kids_end":{"t":"ptr","v":"0x0e9ca910"},"kids_cap":{"t":"ptr","v":"0x0e9ca910"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9ca7f8"},"kids_end":{"t":"ptr","v":"0x0e9ca7fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9ca808"},"kids_end":{"t":"ptr","v":"0x0e9ca810"},"kids_cap":{"t":"ptr","v":"0x0e9ca810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9ca9a8"},"kids_end":{"t":"ptr","v":"0x0e9ca9b0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9ca9b8"},"kids_end":{"t":"ptr","v":"0x0e9ca9bc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe788"},"kids_end":{"t":"ptr","v":"0x0e8fe794"},"kids_cap":{"t":"ptr","v":"0x0e8fe794"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9caae8"},"kids_end":{"t":"ptr","v":"0x0e9caaec"},"kids_cap":{"t":"ptr","v":"0x0e9caaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e9caaa8"},"kids_end":{"t":"ptr","v":"0x0e9caab0"},"kids_cap":{"t":"ptr","v":"0x0e9caab0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9caa38"},"kids_end":{"t":"ptr","v":"0x0e9caa3c"},"kids_cap":{"t":"ptr","v":"0x0e9caa3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9caac8"},"kids_end":{"t":"ptr","v":"0x0e9caacc"},"kids_cap":{"t":"ptr","v":"0x0e9caacc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe860"},"kids_end":{"t":"ptr","v":"0x0e8fe870"},"kids_cap":{"t":"ptr","v":"0x0e8fe870"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e9caa98"},"kids_end":{"t":"ptr","v":"0x0e9caaa0"},"kids_cap":{"t":"ptr","v":"0x0e9caaa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9ca988"},"kids_end":{"t":"ptr","v":"0x0e9ca98c"},"kids_cap":{"t":"ptr","v":"0x0e9ca98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe878"},"kids_end":{"t":"ptr","v":"0x0e8fe888"},"kids_cap":{"t":"ptr","v":"0x0e8fe888"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9cab28"},"kids_end":{"t":"ptr","v":"0x0e9cab30"},"kids_cap":{"t":"ptr","v":"0x0e9cab30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9caaf8"},"kids_end":{"t":"ptr","v":"0x0e9caafc"},"kids_cap":{"t":"ptr","v":"0x0e9caafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e9cab38"},"kids_end":{"t":"ptr","v":"0x0e9cab3c"},"kids_cap":{"t":"ptr","v":"0x0e9cab3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e9cab08"},"kids_end":{"t":"ptr","v":"0x0e9cab10"},"kids_cap":{"t":"ptr","v":"0x0e9cab10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9caa08"},"kids_end":{"t":"ptr","v":"0x0e9caa0c"},"kids_cap":{"t":"ptr","v":"0x0e9caa0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9ca9c8"},"kids_end":{"t":"ptr","v":"0x0e9ca9d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca9d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e8fe7d0"},"kids_end":{"t":"ptr","v":"0x0e8fe7e0"},"kids_cap":{"t":"ptr","v":"0x0e8fe7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9ca9d8"},"kids_end":{"t":"ptr","v":"0x0e9ca9dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9caa58"},"kids_end":{"t":"ptr","v":"0x0e9caa5c"},"kids_cap":{"t":"ptr","v":"0x0e9caa5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9caa48"},"kids_end":{"t":"ptr","v":"0x0e9caa50"},"kids_cap":{"t":"ptr","v":"0x0e9caa50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9caa68"},"kids_end":{"t":"ptr","v":"0x0e9caa6c"},"kids_cap":{"t":"ptr","v":"0x0e9caa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9ca9e8"},"kids_end":{"t":"ptr","v":"0x0e9ca9ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca9ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe590"},"kids_end":{"t":"ptr","v":"0x0e8fe59c"},"kids_cap":{"t":"ptr","v":"0x0e8fe59c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe5f0"},"kids_end":{"t":"ptr","v":"0x0e8fe5fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe6b0"},"kids_end":{"t":"ptr","v":"0x0e8fe6bc"},"kids_cap":{"t":"ptr","v":"0x0e8fe6bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe608"},"kids_end":{"t":"ptr","v":"0x0e8fe614"},"kids_cap":{"t":"ptr","v":"0x0e8fe614"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe5a8"},"kids_end":{"t":"ptr","v":"0x0e8fe5b4"},"kids_cap":{"t":"ptr","v":"0x0e8fe5b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88cdd8"},"kids_end":{"t":"ptr","v":"0x0e88cdf0"},"kids_cap":{"t":"ptr","v":"0x0e88cdf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e9caab8"},"kids_end":{"t":"ptr","v":"0x0e9caac0"},"kids_cap":{"t":"ptr","v":"0x0e9caac0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9cab18"},"kids_end":{"t":"ptr","v":"0x0e9cab20"},"kids_cap":{"t":"ptr","v":"0x0e9cab20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9caad8"},"kids_end":{"t":"ptr","v":"0x0e9caae0"},"kids_cap":{"t":"ptr","v":"0x0e9caae0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9ca958"},"kids_end":{"t":"ptr","v":"0x0e9ca960"},"kids_cap":{"t":"ptr","v":"0x0e9ca960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9caa78"},"kids_end":{"t":"ptr","v":"0x0e9caa7c"},"kids_cap":{"t":"ptr","v":"0x0e9caa7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9caa88"},"kids_end":{"t":"ptr","v":"0x0e9caa8c"},"kids_cap":{"t":"ptr","v":"0x0e9caa8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca998"},"kids_end":{"t":"ptr","v":"0x0e9ca99c"},"kids_cap":{"t":"ptr","v":"0x0e9ca99c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9ca948"},"kids_end":{"t":"ptr","v":"0x0e9ca94c"},"kids_cap":{"t":"ptr","v":"0x0e9ca94c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca968"},"kids_end":{"t":"ptr","v":"0x0e9ca96c"},"kids_cap":{"t":"ptr","v":"0x0e9ca96c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca9f8"},"kids_end":{"t":"ptr","v":"0x0e9ca9fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca978"},"kids_end":{"t":"ptr","v":"0x0e9ca97c"},"kids_cap":{"t":"ptr","v":"0x0e9ca97c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9caa18"},"kids_end":{"t":"ptr","v":"0x0e9caa1c"},"kids_cap":{"t":"ptr","v":"0x0e9caa1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9caa28"},"kids_end":{"t":"ptr","v":"0x0e9caa2c"},"kids_cap":{"t":"ptr","v":"0x0e9caa2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9cacd8"},"kids_end":{"t":"ptr","v":"0x0e9cacdc"},"kids_cap":{"t":"ptr","v":"0x0e9cacdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9caca8"},"kids_end":{"t":"ptr","v":"0x0e9cacac"},"kids_cap":{"t":"ptr","v":"0x0e9cacac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":144},"next_id":{"t":"i32","v":14},"vec_begin":{"t":"ptr","v":"0x366cba50"},"vec_end":{"t":"ptr","v":"0x366cbae0"},"vec_cap":{"t":"ptr","v":"0x366cbae0"}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["player","tree_header"],"undeclared":[],"n":0}} +{"ts":476738054,"hook":"Game::TechTree::ProcessResearch","mode":"compare","call_id":13,"thread":1412,"depth":0,"args":[{"t":"ptr","v":"0x0e93b6c0","n":"tree"},{"t":"ptr","v":"0x0e906b68","n":"owner"},{"t":"i32","v":0,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e96ad78","n":"rng"},{"t":"i32","v":355,"n":"rng_left_in"},{"t":"list","v":[{"t":"struct","v":{"tech_id":{"t":"i32","v":90},"points":{"t":"i32","v":0}}}],"n":"alloc"},{"t":"i32","v":0,"n":"overbudget_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":355},"next_index":{"t":"i64","v":269}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":355},"next_index":{"t":"i64","v":269}}}},"overbudget":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9cb2e8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9cb2e8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cb1a8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cb1a8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cb158"},"kids_end":{"t":"ptr","v":"0x0e9cb15c"},"kids_cap":{"t":"ptr","v":"0x0e9cb15c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cb158"},"kids_end":{"t":"ptr","v":"0x0e9cb15c"},"kids_cap":{"t":"ptr","v":"0x0e9cb15c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9cb168"},"kids_end":{"t":"ptr","v":"0x0e9cb170"},"kids_cap":{"t":"ptr","v":"0x0e9cb170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9cb168"},"kids_end":{"t":"ptr","v":"0x0e9cb170"},"kids_cap":{"t":"ptr","v":"0x0e9cb170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9cb178"},"kids_end":{"t":"ptr","v":"0x0e9cb180"},"kids_cap":{"t":"ptr","v":"0x0e9cb180"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9cb178"},"kids_end":{"t":"ptr","v":"0x0e9cb180"},"kids_cap":{"t":"ptr","v":"0x0e9cb180"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cb188"},"kids_end":{"t":"ptr","v":"0x0e9cb18c"},"kids_cap":{"t":"ptr","v":"0x0e9cb18c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cb188"},"kids_end":{"t":"ptr","v":"0x0e9cb18c"},"kids_cap":{"t":"ptr","v":"0x0e9cb18c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9cb1b8"},"kids_end":{"t":"ptr","v":"0x0e9cb1bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9cb1b8"},"kids_end":{"t":"ptr","v":"0x0e9cb1bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9cb288"},"kids_end":{"t":"ptr","v":"0x0e9cb28c"},"kids_cap":{"t":"ptr","v":"0x0e9cb28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9cb288"},"kids_end":{"t":"ptr","v":"0x0e9cb28c"},"kids_cap":{"t":"ptr","v":"0x0e9cb28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe8f0"},"kids_end":{"t":"ptr","v":"0x0e8fe8fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe8f0"},"kids_end":{"t":"ptr","v":"0x0e8fe8fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cb2d8"},"kids_end":{"t":"ptr","v":"0x0e9cb2e0"},"kids_cap":{"t":"ptr","v":"0x0e9cb2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cb2d8"},"kids_end":{"t":"ptr","v":"0x0e9cb2e0"},"kids_cap":{"t":"ptr","v":"0x0e9cb2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe950"},"kids_end":{"t":"ptr","v":"0x0e8fe960"},"kids_cap":{"t":"ptr","v":"0x0e8fe960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe950"},"kids_end":{"t":"ptr","v":"0x0e8fe960"},"kids_cap":{"t":"ptr","v":"0x0e8fe960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cb1c8"},"kids_end":{"t":"ptr","v":"0x0e9cb1cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cb1c8"},"kids_end":{"t":"ptr","v":"0x0e9cb1cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cb1d8"},"kids_end":{"t":"ptr","v":"0x0e9cb1dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cb1d8"},"kids_end":{"t":"ptr","v":"0x0e9cb1dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fe908"},"kids_end":{"t":"ptr","v":"0x0e8fe914"},"kids_cap":{"t":"ptr","v":"0x0e8fe914"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fe908"},"kids_end":{"t":"ptr","v":"0x0e8fe914"},"kids_cap":{"t":"ptr","v":"0x0e8fe914"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9cb238"},"kids_end":{"t":"ptr","v":"0x0e9cb23c"},"kids_cap":{"t":"ptr","v":"0x0e9cb23c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9cb238"},"kids_end":{"t":"ptr","v":"0x0e9cb23c"},"kids_cap":{"t":"ptr","v":"0x0e9cb23c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cb1e8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cb1e8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9cb2f8"},"kids_end":{"t":"ptr","v":"0x0e9cb2fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb2fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9cb2f8"},"kids_end":{"t":"ptr","v":"0x0e9cb2fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb2fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe968"},"kids_end":{"t":"ptr","v":"0x0e8fe974"},"kids_cap":{"t":"ptr","v":"0x0e8fe974"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe968"},"kids_end":{"t":"ptr","v":"0x0e8fe974"},"kids_cap":{"t":"ptr","v":"0x0e8fe974"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fcce8"},"kids_end":{"t":"ptr","v":"0x0e8fccf8"},"kids_cap":{"t":"ptr","v":"0x0e8fccf8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fcce8"},"kids_end":{"t":"ptr","v":"0x0e8fccf8"},"kids_cap":{"t":"ptr","v":"0x0e8fccf8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cb318"},"kids_end":{"t":"ptr","v":"0x0e9cb31c"},"kids_cap":{"t":"ptr","v":"0x0e9cb31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cb318"},"kids_end":{"t":"ptr","v":"0x0e9cb31c"},"kids_cap":{"t":"ptr","v":"0x0e9cb31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cb248"},"kids_end":{"t":"ptr","v":"0x0e9cb24c"},"kids_cap":{"t":"ptr","v":"0x0e9cb24c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cb248"},"kids_end":{"t":"ptr","v":"0x0e9cb24c"},"kids_cap":{"t":"ptr","v":"0x0e9cb24c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb1f8"},"kids_end":{"t":"ptr","v":"0x0e9cb1fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb1f8"},"kids_end":{"t":"ptr","v":"0x0e9cb1fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb308"},"kids_end":{"t":"ptr","v":"0x0e9cb30c"},"kids_cap":{"t":"ptr","v":"0x0e9cb30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb308"},"kids_end":{"t":"ptr","v":"0x0e9cb30c"},"kids_cap":{"t":"ptr","v":"0x0e9cb30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9cb268"},"kids_end":{"t":"ptr","v":"0x0e9cb270"},"kids_cap":{"t":"ptr","v":"0x0e9cb270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9cb268"},"kids_end":{"t":"ptr","v":"0x0e9cb270"},"kids_cap":{"t":"ptr","v":"0x0e9cb270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fcd18"},"kids_end":{"t":"ptr","v":"0x0e8fcd24"},"kids_cap":{"t":"ptr","v":"0x0e8fcd24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fcd18"},"kids_end":{"t":"ptr","v":"0x0e8fcd24"},"kids_cap":{"t":"ptr","v":"0x0e8fcd24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb208"},"kids_end":{"t":"ptr","v":"0x0e9cb210"},"kids_cap":{"t":"ptr","v":"0x0e9cb210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb208"},"kids_end":{"t":"ptr","v":"0x0e9cb210"},"kids_cap":{"t":"ptr","v":"0x0e9cb210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fcb50"},"kids_end":{"t":"ptr","v":"0x0e8fcb5c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fcb50"},"kids_end":{"t":"ptr","v":"0x0e8fcb5c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fcad8"},"kids_end":{"t":"ptr","v":"0x0e8fcae4"},"kids_cap":{"t":"ptr","v":"0x0e8fcae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fcad8"},"kids_end":{"t":"ptr","v":"0x0e8fcae4"},"kids_cap":{"t":"ptr","v":"0x0e8fcae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e9cb218"},"kids_end":{"t":"ptr","v":"0x0e9cb220"},"kids_cap":{"t":"ptr","v":"0x0e9cb220"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e9cb218"},"kids_end":{"t":"ptr","v":"0x0e9cb220"},"kids_cap":{"t":"ptr","v":"0x0e9cb220"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9cb328"},"kids_end":{"t":"ptr","v":"0x0e9cb32c"},"kids_cap":{"t":"ptr","v":"0x0e9cb32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9cb328"},"kids_end":{"t":"ptr","v":"0x0e9cb32c"},"kids_cap":{"t":"ptr","v":"0x0e9cb32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cb278"},"kids_end":{"t":"ptr","v":"0x0e9cb27c"},"kids_cap":{"t":"ptr","v":"0x0e9cb27c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cb278"},"kids_end":{"t":"ptr","v":"0x0e9cb27c"},"kids_cap":{"t":"ptr","v":"0x0e9cb27c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fcc40"},"kids_end":{"t":"ptr","v":"0x0e8fcc4c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fcc40"},"kids_end":{"t":"ptr","v":"0x0e8fcc4c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9cb298"},"kids_end":{"t":"ptr","v":"0x0e9cb29c"},"kids_cap":{"t":"ptr","v":"0x0e9cb29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9cb298"},"kids_end":{"t":"ptr","v":"0x0e9cb29c"},"kids_cap":{"t":"ptr","v":"0x0e9cb29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb2a8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb2a8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9cb3b8"},"kids_end":{"t":"ptr","v":"0x0e9cb3bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9cb3b8"},"kids_end":{"t":"ptr","v":"0x0e9cb3bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cb358"},"kids_end":{"t":"ptr","v":"0x0e9cb35c"},"kids_cap":{"t":"ptr","v":"0x0e9cb35c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cb358"},"kids_end":{"t":"ptr","v":"0x0e9cb35c"},"kids_cap":{"t":"ptr","v":"0x0e9cb35c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fcb68"},"kids_end":{"t":"ptr","v":"0x0e8fcb74"},"kids_cap":{"t":"ptr","v":"0x0e8fcb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fcb68"},"kids_end":{"t":"ptr","v":"0x0e8fcb74"},"kids_cap":{"t":"ptr","v":"0x0e8fcb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9cb448"},"kids_end":{"t":"ptr","v":"0x0e9cb44c"},"kids_cap":{"t":"ptr","v":"0x0e9cb44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9cb448"},"kids_end":{"t":"ptr","v":"0x0e9cb44c"},"kids_cap":{"t":"ptr","v":"0x0e9cb44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb408"},"kids_end":{"t":"ptr","v":"0x0e9cb40c"},"kids_cap":{"t":"ptr","v":"0x0e9cb40c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb408"},"kids_end":{"t":"ptr","v":"0x0e9cb40c"},"kids_cap":{"t":"ptr","v":"0x0e9cb40c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb3e8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb3e8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb4a8"},"kids_end":{"t":"ptr","v":"0x0e9cb4ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb4a8"},"kids_end":{"t":"ptr","v":"0x0e9cb4ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb4d8"},"kids_end":{"t":"ptr","v":"0x0e9cb4dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb4d8"},"kids_end":{"t":"ptr","v":"0x0e9cb4dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb498"},"kids_end":{"t":"ptr","v":"0x0e9cb49c"},"kids_cap":{"t":"ptr","v":"0x0e9cb49c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb498"},"kids_end":{"t":"ptr","v":"0x0e9cb49c"},"kids_cap":{"t":"ptr","v":"0x0e9cb49c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9cb3f8"},"kids_end":{"t":"ptr","v":"0x0e9cb3fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9cb3f8"},"kids_end":{"t":"ptr","v":"0x0e9cb3fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fcaf0"},"kids_end":{"t":"ptr","v":"0x0e8fcafc"},"kids_cap":{"t":"ptr","v":"0x0e8fcafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fcaf0"},"kids_end":{"t":"ptr","v":"0x0e8fcafc"},"kids_cap":{"t":"ptr","v":"0x0e8fcafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fcb08"},"kids_end":{"t":"ptr","v":"0x0e8fcb14"},"kids_cap":{"t":"ptr","v":"0x0e8fcb14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fcb08"},"kids_end":{"t":"ptr","v":"0x0e8fcb14"},"kids_cap":{"t":"ptr","v":"0x0e8fcb14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb3a8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb3a8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb488"},"kids_end":{"t":"ptr","v":"0x0e9cb490"},"kids_cap":{"t":"ptr","v":"0x0e9cb490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb488"},"kids_end":{"t":"ptr","v":"0x0e9cb490"},"kids_cap":{"t":"ptr","v":"0x0e9cb490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cb4c8"},"kids_end":{"t":"ptr","v":"0x0e9cb4cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cb4c8"},"kids_end":{"t":"ptr","v":"0x0e9cb4cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88ce18"},"kids_end":{"t":"ptr","v":"0x0e88ce2c"},"kids_cap":{"t":"ptr","v":"0x0e88ce2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88ce18"},"kids_end":{"t":"ptr","v":"0x0e88ce2c"},"kids_cap":{"t":"ptr","v":"0x0e88ce2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fcb80"},"kids_end":{"t":"ptr","v":"0x0e8fcb8c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fcb80"},"kids_end":{"t":"ptr","v":"0x0e8fcb8c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969de0"},"kids_end":{"t":"ptr","v":"0x0e969e04"},"kids_cap":{"t":"ptr","v":"0x0e969e04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969de0"},"kids_end":{"t":"ptr","v":"0x0e969e04"},"kids_cap":{"t":"ptr","v":"0x0e969e04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fcc28"},"kids_end":{"t":"ptr","v":"0x0e8fcc34"},"kids_cap":{"t":"ptr","v":"0x0e8fcc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fcc28"},"kids_end":{"t":"ptr","v":"0x0e8fcc34"},"kids_cap":{"t":"ptr","v":"0x0e8fcc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[86]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921a90"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e9cb348"},"kids_end":{"t":"ptr","v":"0x0e9cb34c"},"kids_cap":{"t":"ptr","v":"0x0e9cb34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921a90"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e9cb348"},"kids_end":{"t":"ptr","v":"0x0e9cb34c"},"kids_cap":{"t":"ptr","v":"0x0e9cb34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[87]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04922318"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e9cb388"},"kids_end":{"t":"ptr","v":"0x0e9cb390"},"kids_cap":{"t":"ptr","v":"0x0e9cb390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04922318"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e9cb388"},"kids_end":{"t":"ptr","v":"0x0e9cb390"},"kids_cap":{"t":"ptr","v":"0x0e9cb390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[88]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920ab8"},"tech_id":{"t":"i32","v":88},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920ab8"},"tech_id":{"t":"i32","v":88},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb4b8"},"kids_end":{"t":"ptr","v":"0x0e9cb4bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb4b8"},"kids_end":{"t":"ptr","v":"0x0e9cb4bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9cb458"},"kids_end":{"t":"ptr","v":"0x0e9cb45c"},"kids_cap":{"t":"ptr","v":"0x0e9cb45c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9cb458"},"kids_end":{"t":"ptr","v":"0x0e9cb45c"},"kids_cap":{"t":"ptr","v":"0x0e9cb45c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb468"},"kids_end":{"t":"ptr","v":"0x0e9cb46c"},"kids_cap":{"t":"ptr","v":"0x0e9cb46c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb468"},"kids_end":{"t":"ptr","v":"0x0e9cb46c"},"kids_cap":{"t":"ptr","v":"0x0e9cb46c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb478"},"kids_end":{"t":"ptr","v":"0x0e9cb47c"},"kids_cap":{"t":"ptr","v":"0x0e9cb47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb478"},"kids_end":{"t":"ptr","v":"0x0e9cb47c"},"kids_cap":{"t":"ptr","v":"0x0e9cb47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb3d8"},"kids_end":{"t":"ptr","v":"0x0e9cb3dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb3d8"},"kids_end":{"t":"ptr","v":"0x0e9cb3dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb438"},"kids_end":{"t":"ptr","v":"0x0e9cb440"},"kids_cap":{"t":"ptr","v":"0x0e9cb440"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb438"},"kids_end":{"t":"ptr","v":"0x0e9cb440"},"kids_cap":{"t":"ptr","v":"0x0e9cb440"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb368"},"kids_end":{"t":"ptr","v":"0x0e9cb370"},"kids_cap":{"t":"ptr","v":"0x0e9cb370"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb368"},"kids_end":{"t":"ptr","v":"0x0e9cb370"},"kids_cap":{"t":"ptr","v":"0x0e9cb370"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d378"},"kids_end":{"t":"ptr","v":"0x0e88d38c"},"kids_cap":{"t":"ptr","v":"0x0e88d38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d378"},"kids_end":{"t":"ptr","v":"0x0e88d38c"},"kids_cap":{"t":"ptr","v":"0x0e88d38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fcb20"},"kids_end":{"t":"ptr","v":"0x0e8fcb2c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fcb20"},"kids_end":{"t":"ptr","v":"0x0e8fcb2c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb378"},"kids_end":{"t":"ptr","v":"0x0e9cb37c"},"kids_cap":{"t":"ptr","v":"0x0e9cb37c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb378"},"kids_end":{"t":"ptr","v":"0x0e9cb37c"},"kids_cap":{"t":"ptr","v":"0x0e9cb37c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb398"},"kids_end":{"t":"ptr","v":"0x0e9cb39c"},"kids_cap":{"t":"ptr","v":"0x0e9cb39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb398"},"kids_end":{"t":"ptr","v":"0x0e9cb39c"},"kids_cap":{"t":"ptr","v":"0x0e9cb39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9cb3c8"},"kids_end":{"t":"ptr","v":"0x0e9cb3cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9cb3c8"},"kids_end":{"t":"ptr","v":"0x0e9cb3cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9cb418"},"kids_end":{"t":"ptr","v":"0x0e9cb41c"},"kids_cap":{"t":"ptr","v":"0x0e9cb41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9cb418"},"kids_end":{"t":"ptr","v":"0x0e9cb41c"},"kids_cap":{"t":"ptr","v":"0x0e9cb41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e9cb428"},"kids_end":{"t":"ptr","v":"0x0e9cb430"},"kids_cap":{"t":"ptr","v":"0x0e9cb430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e9cb428"},"kids_end":{"t":"ptr","v":"0x0e9cb430"},"kids_cap":{"t":"ptr","v":"0x0e9cb430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fccd0"},"kids_end":{"t":"ptr","v":"0x0e8fccdc"},"kids_cap":{"t":"ptr","v":"0x0e8fccdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fccd0"},"kids_end":{"t":"ptr","v":"0x0e8fccdc"},"kids_cap":{"t":"ptr","v":"0x0e8fccdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e9c95d8"},"kids_end":{"t":"ptr","v":"0x0e9c95e0"},"kids_cap":{"t":"ptr","v":"0x0e9c95e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e9c95d8"},"kids_end":{"t":"ptr","v":"0x0e9c95e0"},"kids_cap":{"t":"ptr","v":"0x0e9c95e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9c9638"},"kids_end":{"t":"ptr","v":"0x0e9c9640"},"kids_cap":{"t":"ptr","v":"0x0e9c9640"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9c9638"},"kids_end":{"t":"ptr","v":"0x0e9c9640"},"kids_cap":{"t":"ptr","v":"0x0e9c9640"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e9c9718"},"kids_end":{"t":"ptr","v":"0x0e9c971c"},"kids_cap":{"t":"ptr","v":"0x0e9c971c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e9c9718"},"kids_end":{"t":"ptr","v":"0x0e9c971c"},"kids_cap":{"t":"ptr","v":"0x0e9c971c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fcbf8"},"kids_end":{"t":"ptr","v":"0x0e8fcc04"},"kids_cap":{"t":"ptr","v":"0x0e8fcc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fcbf8"},"kids_end":{"t":"ptr","v":"0x0e8fcc04"},"kids_cap":{"t":"ptr","v":"0x0e8fcc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fcb38"},"kids_end":{"t":"ptr","v":"0x0e8fcb44"},"kids_cap":{"t":"ptr","v":"0x0e8fcb44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fcb38"},"kids_end":{"t":"ptr","v":"0x0e8fcb44"},"kids_cap":{"t":"ptr","v":"0x0e8fcb44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fcb98"},"kids_end":{"t":"ptr","v":"0x0e8fcba8"},"kids_cap":{"t":"ptr","v":"0x0e8fcba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fcb98"},"kids_end":{"t":"ptr","v":"0x0e8fcba8"},"kids_cap":{"t":"ptr","v":"0x0e8fcba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9c96a8"},"kids_end":{"t":"ptr","v":"0x0e9c96b0"},"kids_cap":{"t":"ptr","v":"0x0e9c96b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9c96a8"},"kids_end":{"t":"ptr","v":"0x0e9c96b0"},"kids_cap":{"t":"ptr","v":"0x0e9c96b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9c9588"},"kids_end":{"t":"ptr","v":"0x0e9c958c"},"kids_cap":{"t":"ptr","v":"0x0e9c958c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9c9588"},"kids_end":{"t":"ptr","v":"0x0e9c958c"},"kids_cap":{"t":"ptr","v":"0x0e9c958c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fcbe0"},"kids_end":{"t":"ptr","v":"0x0e8fcbec"},"kids_cap":{"t":"ptr","v":"0x0e8fcbec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fcbe0"},"kids_end":{"t":"ptr","v":"0x0e8fcbec"},"kids_cap":{"t":"ptr","v":"0x0e8fcbec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9c96f8"},"kids_end":{"t":"ptr","v":"0x0e9c96fc"},"kids_cap":{"t":"ptr","v":"0x0e9c96fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9c96f8"},"kids_end":{"t":"ptr","v":"0x0e9c96fc"},"kids_cap":{"t":"ptr","v":"0x0e9c96fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9c9598"},"kids_end":{"t":"ptr","v":"0x0e9c959c"},"kids_cap":{"t":"ptr","v":"0x0e9c959c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9c9598"},"kids_end":{"t":"ptr","v":"0x0e9c959c"},"kids_cap":{"t":"ptr","v":"0x0e9c959c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e9c95e8"},"kids_end":{"t":"ptr","v":"0x0e9c95ec"},"kids_cap":{"t":"ptr","v":"0x0e9c95ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e9c95e8"},"kids_end":{"t":"ptr","v":"0x0e9c95ec"},"kids_cap":{"t":"ptr","v":"0x0e9c95ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e9c96d8"},"kids_end":{"t":"ptr","v":"0x0e9c96e0"},"kids_cap":{"t":"ptr","v":"0x0e9c96e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e9c96d8"},"kids_end":{"t":"ptr","v":"0x0e9c96e0"},"kids_cap":{"t":"ptr","v":"0x0e9c96e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9c9618"},"kids_end":{"t":"ptr","v":"0x0e9c961c"},"kids_cap":{"t":"ptr","v":"0x0e9c961c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9c9618"},"kids_end":{"t":"ptr","v":"0x0e9c961c"},"kids_cap":{"t":"ptr","v":"0x0e9c961c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9c9548"},"kids_end":{"t":"ptr","v":"0x0e9c9550"},"kids_cap":{"t":"ptr","v":"0x0e9c9550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9c9548"},"kids_end":{"t":"ptr","v":"0x0e9c9550"},"kids_cap":{"t":"ptr","v":"0x0e9c9550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fcd00"},"kids_end":{"t":"ptr","v":"0x0e8fcd0c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fcd00"},"kids_end":{"t":"ptr","v":"0x0e8fcd0c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e9c95a8"},"kids_end":{"t":"ptr","v":"0x0e9c95ac"},"kids_cap":{"t":"ptr","v":"0x0e9c95ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e9c95a8"},"kids_end":{"t":"ptr","v":"0x0e9c95ac"},"kids_cap":{"t":"ptr","v":"0x0e9c95ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9c9708"},"kids_end":{"t":"ptr","v":"0x0e9c9710"},"kids_cap":{"t":"ptr","v":"0x0e9c9710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9c9708"},"kids_end":{"t":"ptr","v":"0x0e9c9710"},"kids_cap":{"t":"ptr","v":"0x0e9c9710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e9c9558"},"kids_end":{"t":"ptr","v":"0x0e9c955c"},"kids_cap":{"t":"ptr","v":"0x0e9c955c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e9c9558"},"kids_end":{"t":"ptr","v":"0x0e9c955c"},"kids_cap":{"t":"ptr","v":"0x0e9c955c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e9c9698"},"kids_end":{"t":"ptr","v":"0x0e9c96a0"},"kids_cap":{"t":"ptr","v":"0x0e9c96a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e9c9698"},"kids_end":{"t":"ptr","v":"0x0e9c96a0"},"kids_cap":{"t":"ptr","v":"0x0e9c96a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9c9648"},"kids_end":{"t":"ptr","v":"0x0e9c9650"},"kids_cap":{"t":"ptr","v":"0x0e9c9650"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9c9648"},"kids_end":{"t":"ptr","v":"0x0e9c9650"},"kids_cap":{"t":"ptr","v":"0x0e9c9650"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e9c9738"},"kids_end":{"t":"ptr","v":"0x0e9c9740"},"kids_cap":{"t":"ptr","v":"0x0e9c9740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e9c9738"},"kids_end":{"t":"ptr","v":"0x0e9c9740"},"kids_cap":{"t":"ptr","v":"0x0e9c9740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e9c9728"},"kids_end":{"t":"ptr","v":"0x0e9c9730"},"kids_cap":{"t":"ptr","v":"0x0e9c9730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e9c9728"},"kids_end":{"t":"ptr","v":"0x0e9c9730"},"kids_cap":{"t":"ptr","v":"0x0e9c9730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e9c96b8"},"kids_end":{"t":"ptr","v":"0x0e9c96bc"},"kids_cap":{"t":"ptr","v":"0x0e9c96bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e9c96b8"},"kids_end":{"t":"ptr","v":"0x0e9c96bc"},"kids_cap":{"t":"ptr","v":"0x0e9c96bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9c9568"},"kids_end":{"t":"ptr","v":"0x0e9c956c"},"kids_cap":{"t":"ptr","v":"0x0e9c956c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9c9568"},"kids_end":{"t":"ptr","v":"0x0e9c956c"},"kids_cap":{"t":"ptr","v":"0x0e9c956c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9c9578"},"kids_end":{"t":"ptr","v":"0x0e9c9580"},"kids_cap":{"t":"ptr","v":"0x0e9c9580"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9c9578"},"kids_end":{"t":"ptr","v":"0x0e9c9580"},"kids_cap":{"t":"ptr","v":"0x0e9c9580"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9c95c8"},"kids_end":{"t":"ptr","v":"0x0e9c95d0"},"kids_cap":{"t":"ptr","v":"0x0e9c95d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9c95c8"},"kids_end":{"t":"ptr","v":"0x0e9c95d0"},"kids_cap":{"t":"ptr","v":"0x0e9c95d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9c95b8"},"kids_end":{"t":"ptr","v":"0x0e9c95bc"},"kids_cap":{"t":"ptr","v":"0x0e9c95bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9c95b8"},"kids_end":{"t":"ptr","v":"0x0e9c95bc"},"kids_cap":{"t":"ptr","v":"0x0e9c95bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e9c95f8"},"kids_end":{"t":"ptr","v":"0x0e9c95fc"},"kids_cap":{"t":"ptr","v":"0x0e9c95fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e9c95f8"},"kids_end":{"t":"ptr","v":"0x0e9c95fc"},"kids_cap":{"t":"ptr","v":"0x0e9c95fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9c9608"},"kids_end":{"t":"ptr","v":"0x0e9c9610"},"kids_cap":{"t":"ptr","v":"0x0e9c9610"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9c9608"},"kids_end":{"t":"ptr","v":"0x0e9c9610"},"kids_cap":{"t":"ptr","v":"0x0e9c9610"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9c9628"},"kids_end":{"t":"ptr","v":"0x0e9c962c"},"kids_cap":{"t":"ptr","v":"0x0e9c962c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9c9628"},"kids_end":{"t":"ptr","v":"0x0e9c962c"},"kids_cap":{"t":"ptr","v":"0x0e9c962c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e9c9658"},"kids_end":{"t":"ptr","v":"0x0e9c965c"},"kids_cap":{"t":"ptr","v":"0x0e9c965c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e9c9658"},"kids_end":{"t":"ptr","v":"0x0e9c965c"},"kids_cap":{"t":"ptr","v":"0x0e9c965c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9c9668"},"kids_end":{"t":"ptr","v":"0x0e9c9670"},"kids_cap":{"t":"ptr","v":"0x0e9c9670"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9c9668"},"kids_end":{"t":"ptr","v":"0x0e9c9670"},"kids_cap":{"t":"ptr","v":"0x0e9c9670"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9c9678"},"kids_end":{"t":"ptr","v":"0x0e9c967c"},"kids_cap":{"t":"ptr","v":"0x0e9c967c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9c9678"},"kids_end":{"t":"ptr","v":"0x0e9c967c"},"kids_cap":{"t":"ptr","v":"0x0e9c967c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e9c96c8"},"kids_end":{"t":"ptr","v":"0x0e9c96cc"},"kids_cap":{"t":"ptr","v":"0x0e9c96cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e9c96c8"},"kids_end":{"t":"ptr","v":"0x0e9c96cc"},"kids_cap":{"t":"ptr","v":"0x0e9c96cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fcbb0"},"kids_end":{"t":"ptr","v":"0x0e8fcbbc"},"kids_cap":{"t":"ptr","v":"0x0e8fcbbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fcbb0"},"kids_end":{"t":"ptr","v":"0x0e8fcbbc"},"kids_cap":{"t":"ptr","v":"0x0e8fcbbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fcd78"},"kids_end":{"t":"ptr","v":"0x0e8fcd88"},"kids_cap":{"t":"ptr","v":"0x0e8fcd88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fcd78"},"kids_end":{"t":"ptr","v":"0x0e8fcd88"},"kids_cap":{"t":"ptr","v":"0x0e8fcd88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9c96e8"},"kids_end":{"t":"ptr","v":"0x0e9c96f0"},"kids_cap":{"t":"ptr","v":"0x0e9c96f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9c96e8"},"kids_end":{"t":"ptr","v":"0x0e9c96f0"},"kids_cap":{"t":"ptr","v":"0x0e9c96f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e9c9688"},"kids_end":{"t":"ptr","v":"0x0e9c9690"},"kids_cap":{"t":"ptr","v":"0x0e9c9690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e9c9688"},"kids_end":{"t":"ptr","v":"0x0e9c9690"},"kids_cap":{"t":"ptr","v":"0x0e9c9690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9c98e8"},"kids_end":{"t":"ptr","v":"0x0e9c98ec"},"kids_cap":{"t":"ptr","v":"0x0e9c98ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9c98e8"},"kids_end":{"t":"ptr","v":"0x0e9c98ec"},"kids_cap":{"t":"ptr","v":"0x0e9c98ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9c97a8"},"kids_end":{"t":"ptr","v":"0x0e9c97b0"},"kids_cap":{"t":"ptr","v":"0x0e9c97b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9c97a8"},"kids_end":{"t":"ptr","v":"0x0e9c97b0"},"kids_cap":{"t":"ptr","v":"0x0e9c97b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e9c98b8"},"kids_end":{"t":"ptr","v":"0x0e9c98c0"},"kids_cap":{"t":"ptr","v":"0x0e9c98c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e9c98b8"},"kids_end":{"t":"ptr","v":"0x0e9c98c0"},"kids_cap":{"t":"ptr","v":"0x0e9c98c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9c98a8"},"kids_end":{"t":"ptr","v":"0x0e9c98b0"},"kids_cap":{"t":"ptr","v":"0x0e9c98b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9c98a8"},"kids_end":{"t":"ptr","v":"0x0e9c98b0"},"kids_cap":{"t":"ptr","v":"0x0e9c98b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e9c98d8"},"kids_end":{"t":"ptr","v":"0x0e9c98dc"},"kids_cap":{"t":"ptr","v":"0x0e9c98dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e9c98d8"},"kids_end":{"t":"ptr","v":"0x0e9c98dc"},"kids_cap":{"t":"ptr","v":"0x0e9c98dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e9c9748"},"kids_end":{"t":"ptr","v":"0x0e9c974c"},"kids_cap":{"t":"ptr","v":"0x0e9c974c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e9c9748"},"kids_end":{"t":"ptr","v":"0x0e9c974c"},"kids_cap":{"t":"ptr","v":"0x0e9c974c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9c9788"},"kids_end":{"t":"ptr","v":"0x0e9c9790"},"kids_cap":{"t":"ptr","v":"0x0e9c9790"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9c9788"},"kids_end":{"t":"ptr","v":"0x0e9c9790"},"kids_cap":{"t":"ptr","v":"0x0e9c9790"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e9c9758"},"kids_end":{"t":"ptr","v":"0x0e9c975c"},"kids_cap":{"t":"ptr","v":"0x0e9c975c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e9c9758"},"kids_end":{"t":"ptr","v":"0x0e9c975c"},"kids_cap":{"t":"ptr","v":"0x0e9c975c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fcd60"},"kids_end":{"t":"ptr","v":"0x0e8fcd6c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fcd60"},"kids_end":{"t":"ptr","v":"0x0e8fcd6c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9c98c8"},"kids_end":{"t":"ptr","v":"0x0e9c98cc"},"kids_cap":{"t":"ptr","v":"0x0e9c98cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9c98c8"},"kids_end":{"t":"ptr","v":"0x0e9c98cc"},"kids_cap":{"t":"ptr","v":"0x0e9c98cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d098"},"kids_end":{"t":"ptr","v":"0x0e88d0ac"},"kids_cap":{"t":"ptr","v":"0x0e88d0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d098"},"kids_end":{"t":"ptr","v":"0x0e88d0ac"},"kids_cap":{"t":"ptr","v":"0x0e88d0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e9c98f8"},"kids_end":{"t":"ptr","v":"0x0e9c98fc"},"kids_cap":{"t":"ptr","v":"0x0e9c98fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e9c98f8"},"kids_end":{"t":"ptr","v":"0x0e9c98fc"},"kids_cap":{"t":"ptr","v":"0x0e9c98fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e9c9878"},"kids_end":{"t":"ptr","v":"0x0e9c987c"},"kids_cap":{"t":"ptr","v":"0x0e9c987c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e9c9878"},"kids_end":{"t":"ptr","v":"0x0e9c987c"},"kids_cap":{"t":"ptr","v":"0x0e9c987c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e9c9838"},"kids_end":{"t":"ptr","v":"0x0e9c983c"},"kids_cap":{"t":"ptr","v":"0x0e9c983c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e9c9838"},"kids_end":{"t":"ptr","v":"0x0e9c983c"},"kids_cap":{"t":"ptr","v":"0x0e9c983c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9c9908"},"kids_end":{"t":"ptr","v":"0x0e9c990c"},"kids_cap":{"t":"ptr","v":"0x0e9c990c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9c9908"},"kids_end":{"t":"ptr","v":"0x0e9c990c"},"kids_cap":{"t":"ptr","v":"0x0e9c990c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9c9818"},"kids_end":{"t":"ptr","v":"0x0e9c981c"},"kids_cap":{"t":"ptr","v":"0x0e9c981c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9c9818"},"kids_end":{"t":"ptr","v":"0x0e9c981c"},"kids_cap":{"t":"ptr","v":"0x0e9c981c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fcd30"},"kids_end":{"t":"ptr","v":"0x0e8fcd40"},"kids_cap":{"t":"ptr","v":"0x0e8fcd40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fcd30"},"kids_end":{"t":"ptr","v":"0x0e8fcd40"},"kids_cap":{"t":"ptr","v":"0x0e8fcd40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fcbc8"},"kids_end":{"t":"ptr","v":"0x0e8fcbd4"},"kids_cap":{"t":"ptr","v":"0x0e8fcbd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fcbc8"},"kids_end":{"t":"ptr","v":"0x0e8fcbd4"},"kids_cap":{"t":"ptr","v":"0x0e8fcbd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[217]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e840"},"tech_id":{"t":"i32","v":217},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e840"},"tech_id":{"t":"i32","v":217},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9c9928"},"kids_end":{"t":"ptr","v":"0x0e9c992c"},"kids_cap":{"t":"ptr","v":"0x0e9c992c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9c9928"},"kids_end":{"t":"ptr","v":"0x0e9c992c"},"kids_cap":{"t":"ptr","v":"0x0e9c992c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9c97c8"},"kids_end":{"t":"ptr","v":"0x0e9c97cc"},"kids_cap":{"t":"ptr","v":"0x0e9c97cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9c97c8"},"kids_end":{"t":"ptr","v":"0x0e9c97cc"},"kids_cap":{"t":"ptr","v":"0x0e9c97cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fcc58"},"kids_end":{"t":"ptr","v":"0x0e8fcc68"},"kids_cap":{"t":"ptr","v":"0x0e8fcc68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fcc58"},"kids_end":{"t":"ptr","v":"0x0e8fcc68"},"kids_cap":{"t":"ptr","v":"0x0e8fcc68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9c9798"},"kids_end":{"t":"ptr","v":"0x0e9c97a0"},"kids_cap":{"t":"ptr","v":"0x0e9c97a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9c9798"},"kids_end":{"t":"ptr","v":"0x0e9c97a0"},"kids_cap":{"t":"ptr","v":"0x0e9c97a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9c9938"},"kids_end":{"t":"ptr","v":"0x0e9c993c"},"kids_cap":{"t":"ptr","v":"0x0e9c993c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9c9938"},"kids_end":{"t":"ptr","v":"0x0e9c993c"},"kids_cap":{"t":"ptr","v":"0x0e9c993c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e9c9778"},"kids_end":{"t":"ptr","v":"0x0e9c977c"},"kids_cap":{"t":"ptr","v":"0x0e9c977c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e9c9778"},"kids_end":{"t":"ptr","v":"0x0e9c977c"},"kids_cap":{"t":"ptr","v":"0x0e9c977c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fcd48"},"kids_end":{"t":"ptr","v":"0x0e8fcd54"},"kids_cap":{"t":"ptr","v":"0x0e8fcd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fcd48"},"kids_end":{"t":"ptr","v":"0x0e8fcd54"},"kids_cap":{"t":"ptr","v":"0x0e8fcd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9c9768"},"kids_end":{"t":"ptr","v":"0x0e9c9770"},"kids_cap":{"t":"ptr","v":"0x0e9c9770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9c9768"},"kids_end":{"t":"ptr","v":"0x0e9c9770"},"kids_cap":{"t":"ptr","v":"0x0e9c9770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d398"},"kids_end":{"t":"ptr","v":"0x0e88d3ac"},"kids_cap":{"t":"ptr","v":"0x0e88d3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d398"},"kids_end":{"t":"ptr","v":"0x0e88d3ac"},"kids_cap":{"t":"ptr","v":"0x0e88d3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e9c9888"},"kids_end":{"t":"ptr","v":"0x0e9c988c"},"kids_cap":{"t":"ptr","v":"0x0e9c988c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e9c9888"},"kids_end":{"t":"ptr","v":"0x0e9c988c"},"kids_cap":{"t":"ptr","v":"0x0e9c988c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e9c97b8"},"kids_end":{"t":"ptr","v":"0x0e9c97bc"},"kids_cap":{"t":"ptr","v":"0x0e9c97bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e9c97b8"},"kids_end":{"t":"ptr","v":"0x0e9c97bc"},"kids_cap":{"t":"ptr","v":"0x0e9c97bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9c9898"},"kids_end":{"t":"ptr","v":"0x0e9c989c"},"kids_cap":{"t":"ptr","v":"0x0e9c989c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9c9898"},"kids_end":{"t":"ptr","v":"0x0e9c989c"},"kids_cap":{"t":"ptr","v":"0x0e9c989c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e9c97d8"},"kids_end":{"t":"ptr","v":"0x0e9c97dc"},"kids_cap":{"t":"ptr","v":"0x0e9c97dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e9c97d8"},"kids_end":{"t":"ptr","v":"0x0e9c97dc"},"kids_cap":{"t":"ptr","v":"0x0e9c97dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9c97e8"},"kids_end":{"t":"ptr","v":"0x0e9c97ec"},"kids_cap":{"t":"ptr","v":"0x0e9c97ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9c97e8"},"kids_end":{"t":"ptr","v":"0x0e9c97ec"},"kids_cap":{"t":"ptr","v":"0x0e9c97ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9c97f8"},"kids_end":{"t":"ptr","v":"0x0e9c9800"},"kids_cap":{"t":"ptr","v":"0x0e9c9800"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9c97f8"},"kids_end":{"t":"ptr","v":"0x0e9c9800"},"kids_cap":{"t":"ptr","v":"0x0e9c9800"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d078"},"kids_end":{"t":"ptr","v":"0x0e88d08c"},"kids_cap":{"t":"ptr","v":"0x0e88d08c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d078"},"kids_end":{"t":"ptr","v":"0x0e88d08c"},"kids_cap":{"t":"ptr","v":"0x0e88d08c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e9c9918"},"kids_end":{"t":"ptr","v":"0x0e9c991c"},"kids_cap":{"t":"ptr","v":"0x0e9c991c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e9c9918"},"kids_end":{"t":"ptr","v":"0x0e9c991c"},"kids_cap":{"t":"ptr","v":"0x0e9c991c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9c9848"},"kids_end":{"t":"ptr","v":"0x0e9c984c"},"kids_cap":{"t":"ptr","v":"0x0e9c984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9c9848"},"kids_end":{"t":"ptr","v":"0x0e9c984c"},"kids_cap":{"t":"ptr","v":"0x0e9c984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e9c9868"},"kids_end":{"t":"ptr","v":"0x0e9c986c"},"kids_cap":{"t":"ptr","v":"0x0e9c986c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e9c9868"},"kids_end":{"t":"ptr","v":"0x0e9c986c"},"kids_cap":{"t":"ptr","v":"0x0e9c986c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9c9808"},"kids_end":{"t":"ptr","v":"0x0e9c9810"},"kids_cap":{"t":"ptr","v":"0x0e9c9810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9c9808"},"kids_end":{"t":"ptr","v":"0x0e9c9810"},"kids_cap":{"t":"ptr","v":"0x0e9c9810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9c9858"},"kids_end":{"t":"ptr","v":"0x0e9c9860"},"kids_cap":{"t":"ptr","v":"0x0e9c9860"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9c9858"},"kids_end":{"t":"ptr","v":"0x0e9c9860"},"kids_cap":{"t":"ptr","v":"0x0e9c9860"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e9c9828"},"kids_end":{"t":"ptr","v":"0x0e9c9830"},"kids_cap":{"t":"ptr","v":"0x0e9c9830"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e9c9828"},"kids_end":{"t":"ptr","v":"0x0e9c9830"},"kids_cap":{"t":"ptr","v":"0x0e9c9830"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9c9e78"},"kids_end":{"t":"ptr","v":"0x0e9c9e7c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9c9e78"},"kids_end":{"t":"ptr","v":"0x0e9c9e7c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[253]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697168"},"tech_id":{"t":"i32","v":253},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697168"},"tech_id":{"t":"i32","v":253},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9c9e88"},"kids_end":{"t":"ptr","v":"0x0e9c9e8c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9c9e88"},"kids_end":{"t":"ptr","v":"0x0e9c9e8c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fcc10"},"kids_end":{"t":"ptr","v":"0x0e8fcc1c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fcc10"},"kids_end":{"t":"ptr","v":"0x0e8fcc1c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fca90"},"kids_end":{"t":"ptr","v":"0x0e8fca9c"},"kids_cap":{"t":"ptr","v":"0x0e8fca9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fca90"},"kids_end":{"t":"ptr","v":"0x0e8fca9c"},"kids_cap":{"t":"ptr","v":"0x0e8fca9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fcc70"},"kids_end":{"t":"ptr","v":"0x0e8fcc7c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fcc70"},"kids_end":{"t":"ptr","v":"0x0e8fcc7c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fcaa8"},"kids_end":{"t":"ptr","v":"0x0e8fcab4"},"kids_cap":{"t":"ptr","v":"0x0e8fcab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fcaa8"},"kids_end":{"t":"ptr","v":"0x0e8fcab4"},"kids_cap":{"t":"ptr","v":"0x0e8fcab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fcc88"},"kids_end":{"t":"ptr","v":"0x0e8fcc94"},"kids_cap":{"t":"ptr","v":"0x0e8fcc94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fcc88"},"kids_end":{"t":"ptr","v":"0x0e8fcc94"},"kids_cap":{"t":"ptr","v":"0x0e8fcc94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[269]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699c10"},"tech_id":{"t":"i32","v":269},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699c10"},"tech_id":{"t":"i32","v":269},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d178"},"kids_end":{"t":"ptr","v":"0x0e88d190"},"kids_cap":{"t":"ptr","v":"0x0e88d190"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d178"},"kids_end":{"t":"ptr","v":"0x0e88d190"},"kids_cap":{"t":"ptr","v":"0x0e88d190"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":80000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":80000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9ca0c8"},"kids_end":{"t":"ptr","v":"0x0e9ca0d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca0d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9ca0c8"},"kids_end":{"t":"ptr","v":"0x0e9ca0d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca0d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9ca088"},"kids_end":{"t":"ptr","v":"0x0e9ca090"},"kids_cap":{"t":"ptr","v":"0x0e9ca090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9ca088"},"kids_end":{"t":"ptr","v":"0x0e9ca090"},"kids_cap":{"t":"ptr","v":"0x0e9ca090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9c9f78"},"kids_end":{"t":"ptr","v":"0x0e9c9f80"},"kids_cap":{"t":"ptr","v":"0x0e9c9f80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9c9f78"},"kids_end":{"t":"ptr","v":"0x0e9c9f80"},"kids_cap":{"t":"ptr","v":"0x0e9c9f80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e9c9f98"},"kids_end":{"t":"ptr","v":"0x0e9c9fa0"},"kids_cap":{"t":"ptr","v":"0x0e9c9fa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e9c9f98"},"kids_end":{"t":"ptr","v":"0x0e9c9fa0"},"kids_cap":{"t":"ptr","v":"0x0e9c9fa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9c9fa8"},"kids_end":{"t":"ptr","v":"0x0e9c9fac"},"kids_cap":{"t":"ptr","v":"0x0e9c9fac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9c9fa8"},"kids_end":{"t":"ptr","v":"0x0e9c9fac"},"kids_cap":{"t":"ptr","v":"0x0e9c9fac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9ca098"},"kids_end":{"t":"ptr","v":"0x0e9ca09c"},"kids_cap":{"t":"ptr","v":"0x0e9ca09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9ca098"},"kids_end":{"t":"ptr","v":"0x0e9ca09c"},"kids_cap":{"t":"ptr","v":"0x0e9ca09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca0e8"},"kids_end":{"t":"ptr","v":"0x0e9ca0ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca0e8"},"kids_end":{"t":"ptr","v":"0x0e9ca0ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9c9fe8"},"kids_end":{"t":"ptr","v":"0x0e9c9fec"},"kids_cap":{"t":"ptr","v":"0x0e9c9fec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9c9fe8"},"kids_end":{"t":"ptr","v":"0x0e9c9fec"},"kids_cap":{"t":"ptr","v":"0x0e9c9fec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca128"},"kids_end":{"t":"ptr","v":"0x0e9ca12c"},"kids_cap":{"t":"ptr","v":"0x0e9ca12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca128"},"kids_end":{"t":"ptr","v":"0x0e9ca12c"},"kids_cap":{"t":"ptr","v":"0x0e9ca12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca008"},"kids_end":{"t":"ptr","v":"0x0e9ca00c"},"kids_cap":{"t":"ptr","v":"0x0e9ca00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca008"},"kids_end":{"t":"ptr","v":"0x0e9ca00c"},"kids_cap":{"t":"ptr","v":"0x0e9ca00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca0f8"},"kids_end":{"t":"ptr","v":"0x0e9ca0fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca0f8"},"kids_end":{"t":"ptr","v":"0x0e9ca0fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9ca0d8"},"kids_end":{"t":"ptr","v":"0x0e9ca0dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9ca0d8"},"kids_end":{"t":"ptr","v":"0x0e9ca0dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9ca058"},"kids_end":{"t":"ptr","v":"0x0e9ca05c"},"kids_cap":{"t":"ptr","v":"0x0e9ca05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9ca058"},"kids_end":{"t":"ptr","v":"0x0e9ca05c"},"kids_cap":{"t":"ptr","v":"0x0e9ca05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9c9fc8"},"kids_end":{"t":"ptr","v":"0x0e9c9fcc"},"kids_cap":{"t":"ptr","v":"0x0e9c9fcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9c9fc8"},"kids_end":{"t":"ptr","v":"0x0e9c9fcc"},"kids_cap":{"t":"ptr","v":"0x0e9c9fcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9ca018"},"kids_end":{"t":"ptr","v":"0x0e9ca01c"},"kids_cap":{"t":"ptr","v":"0x0e9ca01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9ca018"},"kids_end":{"t":"ptr","v":"0x0e9ca01c"},"kids_cap":{"t":"ptr","v":"0x0e9ca01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"before":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}},"ours":{"ret":null,"side":{"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":355},"next_index":{"t":"i64","v":269}}}},"overbudget":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9cb2e8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cb1a8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cb158"},"kids_end":{"t":"ptr","v":"0x0e9cb15c"},"kids_cap":{"t":"ptr","v":"0x0e9cb15c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9cb168"},"kids_end":{"t":"ptr","v":"0x0e9cb170"},"kids_cap":{"t":"ptr","v":"0x0e9cb170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9cb178"},"kids_end":{"t":"ptr","v":"0x0e9cb180"},"kids_cap":{"t":"ptr","v":"0x0e9cb180"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cb188"},"kids_end":{"t":"ptr","v":"0x0e9cb18c"},"kids_cap":{"t":"ptr","v":"0x0e9cb18c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9cb1b8"},"kids_end":{"t":"ptr","v":"0x0e9cb1bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9cb288"},"kids_end":{"t":"ptr","v":"0x0e9cb28c"},"kids_cap":{"t":"ptr","v":"0x0e9cb28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe8f0"},"kids_end":{"t":"ptr","v":"0x0e8fe8fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe8fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cb2d8"},"kids_end":{"t":"ptr","v":"0x0e9cb2e0"},"kids_cap":{"t":"ptr","v":"0x0e9cb2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe950"},"kids_end":{"t":"ptr","v":"0x0e8fe960"},"kids_cap":{"t":"ptr","v":"0x0e8fe960"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cb1c8"},"kids_end":{"t":"ptr","v":"0x0e9cb1cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cb1d8"},"kids_end":{"t":"ptr","v":"0x0e9cb1dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fe908"},"kids_end":{"t":"ptr","v":"0x0e8fe914"},"kids_cap":{"t":"ptr","v":"0x0e8fe914"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9cb238"},"kids_end":{"t":"ptr","v":"0x0e9cb23c"},"kids_cap":{"t":"ptr","v":"0x0e9cb23c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cb1e8"},"kids_end":{"t":"ptr","v":"0x0e9cb1ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9cb2f8"},"kids_end":{"t":"ptr","v":"0x0e9cb2fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb2fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe968"},"kids_end":{"t":"ptr","v":"0x0e8fe974"},"kids_cap":{"t":"ptr","v":"0x0e8fe974"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fcce8"},"kids_end":{"t":"ptr","v":"0x0e8fccf8"},"kids_cap":{"t":"ptr","v":"0x0e8fccf8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cb318"},"kids_end":{"t":"ptr","v":"0x0e9cb31c"},"kids_cap":{"t":"ptr","v":"0x0e9cb31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cb248"},"kids_end":{"t":"ptr","v":"0x0e9cb24c"},"kids_cap":{"t":"ptr","v":"0x0e9cb24c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb1f8"},"kids_end":{"t":"ptr","v":"0x0e9cb1fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb308"},"kids_end":{"t":"ptr","v":"0x0e9cb30c"},"kids_cap":{"t":"ptr","v":"0x0e9cb30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9cb268"},"kids_end":{"t":"ptr","v":"0x0e9cb270"},"kids_cap":{"t":"ptr","v":"0x0e9cb270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fcd18"},"kids_end":{"t":"ptr","v":"0x0e8fcd24"},"kids_cap":{"t":"ptr","v":"0x0e8fcd24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb208"},"kids_end":{"t":"ptr","v":"0x0e9cb210"},"kids_cap":{"t":"ptr","v":"0x0e9cb210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fcb50"},"kids_end":{"t":"ptr","v":"0x0e8fcb5c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fcad8"},"kids_end":{"t":"ptr","v":"0x0e8fcae4"},"kids_cap":{"t":"ptr","v":"0x0e8fcae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e9cb218"},"kids_end":{"t":"ptr","v":"0x0e9cb220"},"kids_cap":{"t":"ptr","v":"0x0e9cb220"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9cb328"},"kids_end":{"t":"ptr","v":"0x0e9cb32c"},"kids_cap":{"t":"ptr","v":"0x0e9cb32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cb278"},"kids_end":{"t":"ptr","v":"0x0e9cb27c"},"kids_cap":{"t":"ptr","v":"0x0e9cb27c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fcc40"},"kids_end":{"t":"ptr","v":"0x0e8fcc4c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9cb298"},"kids_end":{"t":"ptr","v":"0x0e9cb29c"},"kids_cap":{"t":"ptr","v":"0x0e9cb29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb2a8"},"kids_end":{"t":"ptr","v":"0x0e9cb2ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9cb3b8"},"kids_end":{"t":"ptr","v":"0x0e9cb3bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cb358"},"kids_end":{"t":"ptr","v":"0x0e9cb35c"},"kids_cap":{"t":"ptr","v":"0x0e9cb35c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fcb68"},"kids_end":{"t":"ptr","v":"0x0e8fcb74"},"kids_cap":{"t":"ptr","v":"0x0e8fcb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9cb448"},"kids_end":{"t":"ptr","v":"0x0e9cb44c"},"kids_cap":{"t":"ptr","v":"0x0e9cb44c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb408"},"kids_end":{"t":"ptr","v":"0x0e9cb40c"},"kids_cap":{"t":"ptr","v":"0x0e9cb40c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb3e8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb4a8"},"kids_end":{"t":"ptr","v":"0x0e9cb4ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb4ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb4d8"},"kids_end":{"t":"ptr","v":"0x0e9cb4dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb498"},"kids_end":{"t":"ptr","v":"0x0e9cb49c"},"kids_cap":{"t":"ptr","v":"0x0e9cb49c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9cb3f8"},"kids_end":{"t":"ptr","v":"0x0e9cb3fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fcaf0"},"kids_end":{"t":"ptr","v":"0x0e8fcafc"},"kids_cap":{"t":"ptr","v":"0x0e8fcafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fcb08"},"kids_end":{"t":"ptr","v":"0x0e8fcb14"},"kids_cap":{"t":"ptr","v":"0x0e8fcb14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb3a8"},"kids_end":{"t":"ptr","v":"0x0e9cb3ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb488"},"kids_end":{"t":"ptr","v":"0x0e9cb490"},"kids_cap":{"t":"ptr","v":"0x0e9cb490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cb4c8"},"kids_end":{"t":"ptr","v":"0x0e9cb4cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88ce18"},"kids_end":{"t":"ptr","v":"0x0e88ce2c"},"kids_cap":{"t":"ptr","v":"0x0e88ce2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fcb80"},"kids_end":{"t":"ptr","v":"0x0e8fcb8c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969de0"},"kids_end":{"t":"ptr","v":"0x0e969e04"},"kids_cap":{"t":"ptr","v":"0x0e969e04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fcc28"},"kids_end":{"t":"ptr","v":"0x0e8fcc34"},"kids_cap":{"t":"ptr","v":"0x0e8fcc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[86]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921a90"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e9cb348"},"kids_end":{"t":"ptr","v":"0x0e9cb34c"},"kids_cap":{"t":"ptr","v":"0x0e9cb34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[87]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04922318"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e9cb388"},"kids_end":{"t":"ptr","v":"0x0e9cb390"},"kids_cap":{"t":"ptr","v":"0x0e9cb390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[88]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920ab8"},"tech_id":{"t":"i32","v":88},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb4b8"},"kids_end":{"t":"ptr","v":"0x0e9cb4bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb4bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9cb458"},"kids_end":{"t":"ptr","v":"0x0e9cb45c"},"kids_cap":{"t":"ptr","v":"0x0e9cb45c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb468"},"kids_end":{"t":"ptr","v":"0x0e9cb46c"},"kids_cap":{"t":"ptr","v":"0x0e9cb46c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb478"},"kids_end":{"t":"ptr","v":"0x0e9cb47c"},"kids_cap":{"t":"ptr","v":"0x0e9cb47c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb3d8"},"kids_end":{"t":"ptr","v":"0x0e9cb3dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb438"},"kids_end":{"t":"ptr","v":"0x0e9cb440"},"kids_cap":{"t":"ptr","v":"0x0e9cb440"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb368"},"kids_end":{"t":"ptr","v":"0x0e9cb370"},"kids_cap":{"t":"ptr","v":"0x0e9cb370"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d378"},"kids_end":{"t":"ptr","v":"0x0e88d38c"},"kids_cap":{"t":"ptr","v":"0x0e88d38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fcb20"},"kids_end":{"t":"ptr","v":"0x0e8fcb2c"},"kids_cap":{"t":"ptr","v":"0x0e8fcb2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb378"},"kids_end":{"t":"ptr","v":"0x0e9cb37c"},"kids_cap":{"t":"ptr","v":"0x0e9cb37c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb398"},"kids_end":{"t":"ptr","v":"0x0e9cb39c"},"kids_cap":{"t":"ptr","v":"0x0e9cb39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e9cb3c8"},"kids_end":{"t":"ptr","v":"0x0e9cb3cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e9cb418"},"kids_end":{"t":"ptr","v":"0x0e9cb41c"},"kids_cap":{"t":"ptr","v":"0x0e9cb41c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e9cb428"},"kids_end":{"t":"ptr","v":"0x0e9cb430"},"kids_cap":{"t":"ptr","v":"0x0e9cb430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fccd0"},"kids_end":{"t":"ptr","v":"0x0e8fccdc"},"kids_cap":{"t":"ptr","v":"0x0e8fccdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e9c95d8"},"kids_end":{"t":"ptr","v":"0x0e9c95e0"},"kids_cap":{"t":"ptr","v":"0x0e9c95e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e9c9638"},"kids_end":{"t":"ptr","v":"0x0e9c9640"},"kids_cap":{"t":"ptr","v":"0x0e9c9640"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e9c9718"},"kids_end":{"t":"ptr","v":"0x0e9c971c"},"kids_cap":{"t":"ptr","v":"0x0e9c971c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fcbf8"},"kids_end":{"t":"ptr","v":"0x0e8fcc04"},"kids_cap":{"t":"ptr","v":"0x0e8fcc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fcb38"},"kids_end":{"t":"ptr","v":"0x0e8fcb44"},"kids_cap":{"t":"ptr","v":"0x0e8fcb44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fcb98"},"kids_end":{"t":"ptr","v":"0x0e8fcba8"},"kids_cap":{"t":"ptr","v":"0x0e8fcba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e9c96a8"},"kids_end":{"t":"ptr","v":"0x0e9c96b0"},"kids_cap":{"t":"ptr","v":"0x0e9c96b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e9c9588"},"kids_end":{"t":"ptr","v":"0x0e9c958c"},"kids_cap":{"t":"ptr","v":"0x0e9c958c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fcbe0"},"kids_end":{"t":"ptr","v":"0x0e8fcbec"},"kids_cap":{"t":"ptr","v":"0x0e8fcbec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e9c96f8"},"kids_end":{"t":"ptr","v":"0x0e9c96fc"},"kids_cap":{"t":"ptr","v":"0x0e9c96fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e9c9598"},"kids_end":{"t":"ptr","v":"0x0e9c959c"},"kids_cap":{"t":"ptr","v":"0x0e9c959c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e9c95e8"},"kids_end":{"t":"ptr","v":"0x0e9c95ec"},"kids_cap":{"t":"ptr","v":"0x0e9c95ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e9c96d8"},"kids_end":{"t":"ptr","v":"0x0e9c96e0"},"kids_cap":{"t":"ptr","v":"0x0e9c96e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e9c9618"},"kids_end":{"t":"ptr","v":"0x0e9c961c"},"kids_cap":{"t":"ptr","v":"0x0e9c961c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e9c9548"},"kids_end":{"t":"ptr","v":"0x0e9c9550"},"kids_cap":{"t":"ptr","v":"0x0e9c9550"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fcd00"},"kids_end":{"t":"ptr","v":"0x0e8fcd0c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e9c95a8"},"kids_end":{"t":"ptr","v":"0x0e9c95ac"},"kids_cap":{"t":"ptr","v":"0x0e9c95ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e9c9708"},"kids_end":{"t":"ptr","v":"0x0e9c9710"},"kids_cap":{"t":"ptr","v":"0x0e9c9710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e9c9558"},"kids_end":{"t":"ptr","v":"0x0e9c955c"},"kids_cap":{"t":"ptr","v":"0x0e9c955c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e9c9698"},"kids_end":{"t":"ptr","v":"0x0e9c96a0"},"kids_cap":{"t":"ptr","v":"0x0e9c96a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e9c9648"},"kids_end":{"t":"ptr","v":"0x0e9c9650"},"kids_cap":{"t":"ptr","v":"0x0e9c9650"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e9c9738"},"kids_end":{"t":"ptr","v":"0x0e9c9740"},"kids_cap":{"t":"ptr","v":"0x0e9c9740"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e9c9728"},"kids_end":{"t":"ptr","v":"0x0e9c9730"},"kids_cap":{"t":"ptr","v":"0x0e9c9730"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e9c96b8"},"kids_end":{"t":"ptr","v":"0x0e9c96bc"},"kids_cap":{"t":"ptr","v":"0x0e9c96bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e9c9568"},"kids_end":{"t":"ptr","v":"0x0e9c956c"},"kids_cap":{"t":"ptr","v":"0x0e9c956c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e9c9578"},"kids_end":{"t":"ptr","v":"0x0e9c9580"},"kids_cap":{"t":"ptr","v":"0x0e9c9580"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e9c95c8"},"kids_end":{"t":"ptr","v":"0x0e9c95d0"},"kids_cap":{"t":"ptr","v":"0x0e9c95d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e9c95b8"},"kids_end":{"t":"ptr","v":"0x0e9c95bc"},"kids_cap":{"t":"ptr","v":"0x0e9c95bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e9c95f8"},"kids_end":{"t":"ptr","v":"0x0e9c95fc"},"kids_cap":{"t":"ptr","v":"0x0e9c95fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e9c9608"},"kids_end":{"t":"ptr","v":"0x0e9c9610"},"kids_cap":{"t":"ptr","v":"0x0e9c9610"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e9c9628"},"kids_end":{"t":"ptr","v":"0x0e9c962c"},"kids_cap":{"t":"ptr","v":"0x0e9c962c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e9c9658"},"kids_end":{"t":"ptr","v":"0x0e9c965c"},"kids_cap":{"t":"ptr","v":"0x0e9c965c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e9c9668"},"kids_end":{"t":"ptr","v":"0x0e9c9670"},"kids_cap":{"t":"ptr","v":"0x0e9c9670"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e9c9678"},"kids_end":{"t":"ptr","v":"0x0e9c967c"},"kids_cap":{"t":"ptr","v":"0x0e9c967c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e9c96c8"},"kids_end":{"t":"ptr","v":"0x0e9c96cc"},"kids_cap":{"t":"ptr","v":"0x0e9c96cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fcbb0"},"kids_end":{"t":"ptr","v":"0x0e8fcbbc"},"kids_cap":{"t":"ptr","v":"0x0e8fcbbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fcd78"},"kids_end":{"t":"ptr","v":"0x0e8fcd88"},"kids_cap":{"t":"ptr","v":"0x0e8fcd88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9c96e8"},"kids_end":{"t":"ptr","v":"0x0e9c96f0"},"kids_cap":{"t":"ptr","v":"0x0e9c96f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e9c9688"},"kids_end":{"t":"ptr","v":"0x0e9c9690"},"kids_cap":{"t":"ptr","v":"0x0e9c9690"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e9c98e8"},"kids_end":{"t":"ptr","v":"0x0e9c98ec"},"kids_cap":{"t":"ptr","v":"0x0e9c98ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9c97a8"},"kids_end":{"t":"ptr","v":"0x0e9c97b0"},"kids_cap":{"t":"ptr","v":"0x0e9c97b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e9c98b8"},"kids_end":{"t":"ptr","v":"0x0e9c98c0"},"kids_cap":{"t":"ptr","v":"0x0e9c98c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e9c98a8"},"kids_end":{"t":"ptr","v":"0x0e9c98b0"},"kids_cap":{"t":"ptr","v":"0x0e9c98b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e9c98d8"},"kids_end":{"t":"ptr","v":"0x0e9c98dc"},"kids_cap":{"t":"ptr","v":"0x0e9c98dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e9c9748"},"kids_end":{"t":"ptr","v":"0x0e9c974c"},"kids_cap":{"t":"ptr","v":"0x0e9c974c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9c9788"},"kids_end":{"t":"ptr","v":"0x0e9c9790"},"kids_cap":{"t":"ptr","v":"0x0e9c9790"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e9c9758"},"kids_end":{"t":"ptr","v":"0x0e9c975c"},"kids_cap":{"t":"ptr","v":"0x0e9c975c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fcd60"},"kids_end":{"t":"ptr","v":"0x0e8fcd6c"},"kids_cap":{"t":"ptr","v":"0x0e8fcd6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e9c98c8"},"kids_end":{"t":"ptr","v":"0x0e9c98cc"},"kids_cap":{"t":"ptr","v":"0x0e9c98cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d098"},"kids_end":{"t":"ptr","v":"0x0e88d0ac"},"kids_cap":{"t":"ptr","v":"0x0e88d0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e9c98f8"},"kids_end":{"t":"ptr","v":"0x0e9c98fc"},"kids_cap":{"t":"ptr","v":"0x0e9c98fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e9c9878"},"kids_end":{"t":"ptr","v":"0x0e9c987c"},"kids_cap":{"t":"ptr","v":"0x0e9c987c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e9c9838"},"kids_end":{"t":"ptr","v":"0x0e9c983c"},"kids_cap":{"t":"ptr","v":"0x0e9c983c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e9c9908"},"kids_end":{"t":"ptr","v":"0x0e9c990c"},"kids_cap":{"t":"ptr","v":"0x0e9c990c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9c9818"},"kids_end":{"t":"ptr","v":"0x0e9c981c"},"kids_cap":{"t":"ptr","v":"0x0e9c981c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fcd30"},"kids_end":{"t":"ptr","v":"0x0e8fcd40"},"kids_cap":{"t":"ptr","v":"0x0e8fcd40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fcbc8"},"kids_end":{"t":"ptr","v":"0x0e8fcbd4"},"kids_cap":{"t":"ptr","v":"0x0e8fcbd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[217]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e840"},"tech_id":{"t":"i32","v":217},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e9c9928"},"kids_end":{"t":"ptr","v":"0x0e9c992c"},"kids_cap":{"t":"ptr","v":"0x0e9c992c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9c97c8"},"kids_end":{"t":"ptr","v":"0x0e9c97cc"},"kids_cap":{"t":"ptr","v":"0x0e9c97cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fcc58"},"kids_end":{"t":"ptr","v":"0x0e8fcc68"},"kids_cap":{"t":"ptr","v":"0x0e8fcc68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9c9798"},"kids_end":{"t":"ptr","v":"0x0e9c97a0"},"kids_cap":{"t":"ptr","v":"0x0e9c97a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e9c9938"},"kids_end":{"t":"ptr","v":"0x0e9c993c"},"kids_cap":{"t":"ptr","v":"0x0e9c993c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e9c9778"},"kids_end":{"t":"ptr","v":"0x0e9c977c"},"kids_cap":{"t":"ptr","v":"0x0e9c977c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fcd48"},"kids_end":{"t":"ptr","v":"0x0e8fcd54"},"kids_cap":{"t":"ptr","v":"0x0e8fcd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9c9768"},"kids_end":{"t":"ptr","v":"0x0e9c9770"},"kids_cap":{"t":"ptr","v":"0x0e9c9770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d398"},"kids_end":{"t":"ptr","v":"0x0e88d3ac"},"kids_cap":{"t":"ptr","v":"0x0e88d3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e9c9888"},"kids_end":{"t":"ptr","v":"0x0e9c988c"},"kids_cap":{"t":"ptr","v":"0x0e9c988c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e9c97b8"},"kids_end":{"t":"ptr","v":"0x0e9c97bc"},"kids_cap":{"t":"ptr","v":"0x0e9c97bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9c9898"},"kids_end":{"t":"ptr","v":"0x0e9c989c"},"kids_cap":{"t":"ptr","v":"0x0e9c989c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e9c97d8"},"kids_end":{"t":"ptr","v":"0x0e9c97dc"},"kids_cap":{"t":"ptr","v":"0x0e9c97dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9c97e8"},"kids_end":{"t":"ptr","v":"0x0e9c97ec"},"kids_cap":{"t":"ptr","v":"0x0e9c97ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e9c97f8"},"kids_end":{"t":"ptr","v":"0x0e9c9800"},"kids_cap":{"t":"ptr","v":"0x0e9c9800"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d078"},"kids_end":{"t":"ptr","v":"0x0e88d08c"},"kids_cap":{"t":"ptr","v":"0x0e88d08c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e9c9918"},"kids_end":{"t":"ptr","v":"0x0e9c991c"},"kids_cap":{"t":"ptr","v":"0x0e9c991c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9c9848"},"kids_end":{"t":"ptr","v":"0x0e9c984c"},"kids_cap":{"t":"ptr","v":"0x0e9c984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e9c9868"},"kids_end":{"t":"ptr","v":"0x0e9c986c"},"kids_cap":{"t":"ptr","v":"0x0e9c986c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e9c9808"},"kids_end":{"t":"ptr","v":"0x0e9c9810"},"kids_cap":{"t":"ptr","v":"0x0e9c9810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9c9858"},"kids_end":{"t":"ptr","v":"0x0e9c9860"},"kids_cap":{"t":"ptr","v":"0x0e9c9860"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e9c9828"},"kids_end":{"t":"ptr","v":"0x0e9c9830"},"kids_cap":{"t":"ptr","v":"0x0e9c9830"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e9c9e78"},"kids_end":{"t":"ptr","v":"0x0e9c9e7c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[253]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697168"},"tech_id":{"t":"i32","v":253},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e9c9e88"},"kids_end":{"t":"ptr","v":"0x0e9c9e8c"},"kids_cap":{"t":"ptr","v":"0x0e9c9e8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fcc10"},"kids_end":{"t":"ptr","v":"0x0e8fcc1c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fca90"},"kids_end":{"t":"ptr","v":"0x0e8fca9c"},"kids_cap":{"t":"ptr","v":"0x0e8fca9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fcc70"},"kids_end":{"t":"ptr","v":"0x0e8fcc7c"},"kids_cap":{"t":"ptr","v":"0x0e8fcc7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fcaa8"},"kids_end":{"t":"ptr","v":"0x0e8fcab4"},"kids_cap":{"t":"ptr","v":"0x0e8fcab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fcc88"},"kids_end":{"t":"ptr","v":"0x0e8fcc94"},"kids_cap":{"t":"ptr","v":"0x0e8fcc94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[269]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699c10"},"tech_id":{"t":"i32","v":269},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d178"},"kids_end":{"t":"ptr","v":"0x0e88d190"},"kids_cap":{"t":"ptr","v":"0x0e88d190"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":80000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e9ca0c8"},"kids_end":{"t":"ptr","v":"0x0e9ca0d0"},"kids_cap":{"t":"ptr","v":"0x0e9ca0d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e9ca088"},"kids_end":{"t":"ptr","v":"0x0e9ca090"},"kids_cap":{"t":"ptr","v":"0x0e9ca090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e9c9f78"},"kids_end":{"t":"ptr","v":"0x0e9c9f80"},"kids_cap":{"t":"ptr","v":"0x0e9c9f80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e9c9f98"},"kids_end":{"t":"ptr","v":"0x0e9c9fa0"},"kids_cap":{"t":"ptr","v":"0x0e9c9fa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e9c9fa8"},"kids_end":{"t":"ptr","v":"0x0e9c9fac"},"kids_cap":{"t":"ptr","v":"0x0e9c9fac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e9ca098"},"kids_end":{"t":"ptr","v":"0x0e9ca09c"},"kids_cap":{"t":"ptr","v":"0x0e9ca09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e9ca0e8"},"kids_end":{"t":"ptr","v":"0x0e9ca0ec"},"kids_cap":{"t":"ptr","v":"0x0e9ca0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e9c9fe8"},"kids_end":{"t":"ptr","v":"0x0e9c9fec"},"kids_cap":{"t":"ptr","v":"0x0e9c9fec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e9ca128"},"kids_end":{"t":"ptr","v":"0x0e9ca12c"},"kids_cap":{"t":"ptr","v":"0x0e9ca12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e9ca008"},"kids_end":{"t":"ptr","v":"0x0e9ca00c"},"kids_cap":{"t":"ptr","v":"0x0e9ca00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e9ca0f8"},"kids_end":{"t":"ptr","v":"0x0e9ca0fc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e9ca0d8"},"kids_end":{"t":"ptr","v":"0x0e9ca0dc"},"kids_cap":{"t":"ptr","v":"0x0e9ca0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e9ca058"},"kids_end":{"t":"ptr","v":"0x0e9ca05c"},"kids_cap":{"t":"ptr","v":"0x0e9ca05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e9c9fc8"},"kids_end":{"t":"ptr","v":"0x0e9c9fcc"},"kids_cap":{"t":"ptr","v":"0x0e9c9fcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e9ca018"},"kids_end":{"t":"ptr","v":"0x0e9ca01c"},"kids_cap":{"t":"ptr","v":"0x0e9ca01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["player","tree_header"],"undeclared":[],"n":0}} +{"ts":476758101,"hook":"Game::TechTree::ProcessResearch","mode":"compare","call_id":14,"thread":1412,"depth":0,"args":[{"t":"ptr","v":"0x0e93bea0","n":"tree"},{"t":"ptr","v":"0x0e90c540","n":"owner"},{"t":"i32","v":2,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e96ad78","n":"rng"},{"t":"i32","v":355,"n":"rng_left_in"},{"t":"list","v":[{"t":"struct","v":{"tech_id":{"t":"i32","v":9},"points":{"t":"i32","v":0}}}],"n":"alloc"},{"t":"i32","v":0,"n":"overbudget_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":355},"next_index":{"t":"i64","v":269}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":355},"next_index":{"t":"i64","v":269}}}},"overbudget":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9caf28"},"kids_end":{"t":"ptr","v":"0x0e9caf2c"},"kids_cap":{"t":"ptr","v":"0x0e9caf2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9caf28"},"kids_end":{"t":"ptr","v":"0x0e9caf2c"},"kids_cap":{"t":"ptr","v":"0x0e9caf2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cae68"},"kids_end":{"t":"ptr","v":"0x0e9cae6c"},"kids_cap":{"t":"ptr","v":"0x0e9cae6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cae68"},"kids_end":{"t":"ptr","v":"0x0e9cae6c"},"kids_cap":{"t":"ptr","v":"0x0e9cae6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cadf8"},"kids_end":{"t":"ptr","v":"0x0e9cadfc"},"kids_cap":{"t":"ptr","v":"0x0e9cadfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cadf8"},"kids_end":{"t":"ptr","v":"0x0e9cadfc"},"kids_cap":{"t":"ptr","v":"0x0e9cadfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9caea8"},"kids_end":{"t":"ptr","v":"0x0e9caeb0"},"kids_cap":{"t":"ptr","v":"0x0e9caeb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9caea8"},"kids_end":{"t":"ptr","v":"0x0e9caeb0"},"kids_cap":{"t":"ptr","v":"0x0e9caeb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9caf38"},"kids_end":{"t":"ptr","v":"0x0e9caf40"},"kids_cap":{"t":"ptr","v":"0x0e9caf40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9caf38"},"kids_end":{"t":"ptr","v":"0x0e9caf40"},"kids_cap":{"t":"ptr","v":"0x0e9caf40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cad68"},"kids_end":{"t":"ptr","v":"0x0e9cad6c"},"kids_cap":{"t":"ptr","v":"0x0e9cad6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cad68"},"kids_end":{"t":"ptr","v":"0x0e9cad6c"},"kids_cap":{"t":"ptr","v":"0x0e9cad6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9caeb8"},"kids_end":{"t":"ptr","v":"0x0e9caebc"},"kids_cap":{"t":"ptr","v":"0x0e9caebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9caeb8"},"kids_end":{"t":"ptr","v":"0x0e9caebc"},"kids_cap":{"t":"ptr","v":"0x0e9caebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9caef8"},"kids_end":{"t":"ptr","v":"0x0e9caefc"},"kids_cap":{"t":"ptr","v":"0x0e9caefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9caef8"},"kids_end":{"t":"ptr","v":"0x0e9caefc"},"kids_cap":{"t":"ptr","v":"0x0e9caefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe0e0"},"kids_end":{"t":"ptr","v":"0x0e8fe0ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe0e0"},"kids_end":{"t":"ptr","v":"0x0e8fe0ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cad88"},"kids_end":{"t":"ptr","v":"0x0e9cad90"},"kids_cap":{"t":"ptr","v":"0x0e9cad90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cad88"},"kids_end":{"t":"ptr","v":"0x0e9cad90"},"kids_cap":{"t":"ptr","v":"0x0e9cad90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe038"},"kids_end":{"t":"ptr","v":"0x0e8fe048"},"kids_cap":{"t":"ptr","v":"0x0e8fe048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe038"},"kids_end":{"t":"ptr","v":"0x0e8fe048"},"kids_cap":{"t":"ptr","v":"0x0e8fe048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cadb8"},"kids_end":{"t":"ptr","v":"0x0e9cadbc"},"kids_cap":{"t":"ptr","v":"0x0e9cadbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cadb8"},"kids_end":{"t":"ptr","v":"0x0e9cadbc"},"kids_cap":{"t":"ptr","v":"0x0e9cadbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cae98"},"kids_end":{"t":"ptr","v":"0x0e9cae9c"},"kids_cap":{"t":"ptr","v":"0x0e9cae9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cae98"},"kids_end":{"t":"ptr","v":"0x0e9cae9c"},"kids_cap":{"t":"ptr","v":"0x0e9cae9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fdf90"},"kids_end":{"t":"ptr","v":"0x0e8fdf9c"},"kids_cap":{"t":"ptr","v":"0x0e8fdf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fdf90"},"kids_end":{"t":"ptr","v":"0x0e8fdf9c"},"kids_cap":{"t":"ptr","v":"0x0e8fdf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9caec8"},"kids_end":{"t":"ptr","v":"0x0e9caecc"},"kids_cap":{"t":"ptr","v":"0x0e9caecc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9caec8"},"kids_end":{"t":"ptr","v":"0x0e9caecc"},"kids_cap":{"t":"ptr","v":"0x0e9caecc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cae08"},"kids_end":{"t":"ptr","v":"0x0e9cae0c"},"kids_cap":{"t":"ptr","v":"0x0e9cae0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cae08"},"kids_end":{"t":"ptr","v":"0x0e9cae0c"},"kids_cap":{"t":"ptr","v":"0x0e9cae0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9caed8"},"kids_end":{"t":"ptr","v":"0x0e9caedc"},"kids_cap":{"t":"ptr","v":"0x0e9caedc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9caed8"},"kids_end":{"t":"ptr","v":"0x0e9caedc"},"kids_cap":{"t":"ptr","v":"0x0e9caedc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fdfd8"},"kids_end":{"t":"ptr","v":"0x0e8fdfe4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fdfd8"},"kids_end":{"t":"ptr","v":"0x0e8fdfe4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe158"},"kids_end":{"t":"ptr","v":"0x0e8fe168"},"kids_cap":{"t":"ptr","v":"0x0e8fe168"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe158"},"kids_end":{"t":"ptr","v":"0x0e8fe168"},"kids_cap":{"t":"ptr","v":"0x0e8fe168"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cae18"},"kids_end":{"t":"ptr","v":"0x0e9cae1c"},"kids_cap":{"t":"ptr","v":"0x0e9cae1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cae18"},"kids_end":{"t":"ptr","v":"0x0e9cae1c"},"kids_cap":{"t":"ptr","v":"0x0e9cae1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cae28"},"kids_end":{"t":"ptr","v":"0x0e9cae2c"},"kids_cap":{"t":"ptr","v":"0x0e9cae2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cae28"},"kids_end":{"t":"ptr","v":"0x0e9cae2c"},"kids_cap":{"t":"ptr","v":"0x0e9cae2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb068"},"kids_end":{"t":"ptr","v":"0x0e9cb06c"},"kids_cap":{"t":"ptr","v":"0x0e9cb06c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb068"},"kids_end":{"t":"ptr","v":"0x0e9cb06c"},"kids_cap":{"t":"ptr","v":"0x0e9cb06c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb0d8"},"kids_end":{"t":"ptr","v":"0x0e9cb0dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb0d8"},"kids_end":{"t":"ptr","v":"0x0e9cb0dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9caf48"},"kids_end":{"t":"ptr","v":"0x0e9caf50"},"kids_cap":{"t":"ptr","v":"0x0e9caf50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9caf48"},"kids_end":{"t":"ptr","v":"0x0e9caf50"},"kids_cap":{"t":"ptr","v":"0x0e9caf50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe098"},"kids_end":{"t":"ptr","v":"0x0e8fe0a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe098"},"kids_end":{"t":"ptr","v":"0x0e8fe0a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb088"},"kids_end":{"t":"ptr","v":"0x0e9cb090"},"kids_cap":{"t":"ptr","v":"0x0e9cb090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb088"},"kids_end":{"t":"ptr","v":"0x0e9cb090"},"kids_cap":{"t":"ptr","v":"0x0e9cb090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fdfa8"},"kids_end":{"t":"ptr","v":"0x0e8fdfb4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fdfa8"},"kids_end":{"t":"ptr","v":"0x0e8fdfb4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe1a0"},"kids_end":{"t":"ptr","v":"0x0e8fe1ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe1a0"},"kids_end":{"t":"ptr","v":"0x0e8fe1ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe008"},"kids_end":{"t":"ptr","v":"0x0e8fe014"},"kids_cap":{"t":"ptr","v":"0x0e8fe014"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe008"},"kids_end":{"t":"ptr","v":"0x0e8fe014"},"kids_cap":{"t":"ptr","v":"0x0e8fe014"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9caf98"},"kids_end":{"t":"ptr","v":"0x0e9caf9c"},"kids_cap":{"t":"ptr","v":"0x0e9caf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9caf98"},"kids_end":{"t":"ptr","v":"0x0e9caf9c"},"kids_cap":{"t":"ptr","v":"0x0e9caf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cafd8"},"kids_end":{"t":"ptr","v":"0x0e9cafdc"},"kids_cap":{"t":"ptr","v":"0x0e9cafdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cafd8"},"kids_end":{"t":"ptr","v":"0x0e9cafdc"},"kids_cap":{"t":"ptr","v":"0x0e9cafdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe050"},"kids_end":{"t":"ptr","v":"0x0e8fe05c"},"kids_cap":{"t":"ptr","v":"0x0e8fe05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe050"},"kids_end":{"t":"ptr","v":"0x0e8fe05c"},"kids_cap":{"t":"ptr","v":"0x0e8fe05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9caf58"},"kids_end":{"t":"ptr","v":"0x0e9caf5c"},"kids_cap":{"t":"ptr","v":"0x0e9caf5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9caf58"},"kids_end":{"t":"ptr","v":"0x0e9caf5c"},"kids_cap":{"t":"ptr","v":"0x0e9caf5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9cb0e8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9cb0e8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb0f8"},"kids_end":{"t":"ptr","v":"0x0e9cb0fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb0f8"},"kids_end":{"t":"ptr","v":"0x0e9cb0fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9caf68"},"kids_end":{"t":"ptr","v":"0x0e9caf6c"},"kids_cap":{"t":"ptr","v":"0x0e9caf6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9caf68"},"kids_end":{"t":"ptr","v":"0x0e9caf6c"},"kids_cap":{"t":"ptr","v":"0x0e9caf6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cafc8"},"kids_end":{"t":"ptr","v":"0x0e9cafcc"},"kids_cap":{"t":"ptr","v":"0x0e9cafcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cafc8"},"kids_end":{"t":"ptr","v":"0x0e9cafcc"},"kids_cap":{"t":"ptr","v":"0x0e9cafcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe1d0"},"kids_end":{"t":"ptr","v":"0x0e8fe1dc"},"kids_cap":{"t":"ptr","v":"0x0e8fe1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe1d0"},"kids_end":{"t":"ptr","v":"0x0e8fe1dc"},"kids_cap":{"t":"ptr","v":"0x0e8fe1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9caf78"},"kids_end":{"t":"ptr","v":"0x0e9caf7c"},"kids_cap":{"t":"ptr","v":"0x0e9caf7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9caf78"},"kids_end":{"t":"ptr","v":"0x0e9caf7c"},"kids_cap":{"t":"ptr","v":"0x0e9caf7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb118"},"kids_end":{"t":"ptr","v":"0x0e9cb11c"},"kids_cap":{"t":"ptr","v":"0x0e9cb11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb118"},"kids_end":{"t":"ptr","v":"0x0e9cb11c"},"kids_cap":{"t":"ptr","v":"0x0e9cb11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb108"},"kids_end":{"t":"ptr","v":"0x0e9cb10c"},"kids_cap":{"t":"ptr","v":"0x0e9cb10c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb108"},"kids_end":{"t":"ptr","v":"0x0e9cb10c"},"kids_cap":{"t":"ptr","v":"0x0e9cb10c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb0c8"},"kids_end":{"t":"ptr","v":"0x0e9cb0cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb0c8"},"kids_end":{"t":"ptr","v":"0x0e9cb0cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb098"},"kids_end":{"t":"ptr","v":"0x0e9cb09c"},"kids_cap":{"t":"ptr","v":"0x0e9cb09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb098"},"kids_end":{"t":"ptr","v":"0x0e9cb09c"},"kids_cap":{"t":"ptr","v":"0x0e9cb09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb128"},"kids_end":{"t":"ptr","v":"0x0e9cb12c"},"kids_cap":{"t":"ptr","v":"0x0e9cb12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb128"},"kids_end":{"t":"ptr","v":"0x0e9cb12c"},"kids_cap":{"t":"ptr","v":"0x0e9cb12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9caf88"},"kids_end":{"t":"ptr","v":"0x0e9caf8c"},"kids_cap":{"t":"ptr","v":"0x0e9caf8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9caf88"},"kids_end":{"t":"ptr","v":"0x0e9caf8c"},"kids_cap":{"t":"ptr","v":"0x0e9caf8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe1b8"},"kids_end":{"t":"ptr","v":"0x0e8fe1c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe1b8"},"kids_end":{"t":"ptr","v":"0x0e8fe1c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fdfc0"},"kids_end":{"t":"ptr","v":"0x0e8fdfcc"},"kids_cap":{"t":"ptr","v":"0x0e8fdfcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fdfc0"},"kids_end":{"t":"ptr","v":"0x0e8fdfcc"},"kids_cap":{"t":"ptr","v":"0x0e8fdfcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb078"},"kids_end":{"t":"ptr","v":"0x0e9cb07c"},"kids_cap":{"t":"ptr","v":"0x0e9cb07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb078"},"kids_end":{"t":"ptr","v":"0x0e9cb07c"},"kids_cap":{"t":"ptr","v":"0x0e9cb07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb008"},"kids_end":{"t":"ptr","v":"0x0e9cb010"},"kids_cap":{"t":"ptr","v":"0x0e9cb010"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb008"},"kids_end":{"t":"ptr","v":"0x0e9cb010"},"kids_cap":{"t":"ptr","v":"0x0e9cb010"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cafa8"},"kids_end":{"t":"ptr","v":"0x0e9cafb0"},"kids_cap":{"t":"ptr","v":"0x0e9cafb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cafa8"},"kids_end":{"t":"ptr","v":"0x0e9cafb0"},"kids_cap":{"t":"ptr","v":"0x0e9cafb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88d218"},"kids_end":{"t":"ptr","v":"0x0e88d22c"},"kids_cap":{"t":"ptr","v":"0x0e88d22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88d218"},"kids_end":{"t":"ptr","v":"0x0e88d22c"},"kids_cap":{"t":"ptr","v":"0x0e88d22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fdff0"},"kids_end":{"t":"ptr","v":"0x0e8fdffc"},"kids_cap":{"t":"ptr","v":"0x0e8fdffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fdff0"},"kids_end":{"t":"ptr","v":"0x0e8fdffc"},"kids_cap":{"t":"ptr","v":"0x0e8fdffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969f00"},"kids_end":{"t":"ptr","v":"0x0e969f24"},"kids_cap":{"t":"ptr","v":"0x0e969f24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969f00"},"kids_end":{"t":"ptr","v":"0x0e969f24"},"kids_cap":{"t":"ptr","v":"0x0e969f24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9cafe8"},"kids_end":{"t":"ptr","v":"0x0e9cafec"},"kids_cap":{"t":"ptr","v":"0x0e9cafec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9cafe8"},"kids_end":{"t":"ptr","v":"0x0e9cafec"},"kids_cap":{"t":"ptr","v":"0x0e9cafec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9cafb8"},"kids_end":{"t":"ptr","v":"0x0e9cafbc"},"kids_cap":{"t":"ptr","v":"0x0e9cafbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9cafb8"},"kids_end":{"t":"ptr","v":"0x0e9cafbc"},"kids_cap":{"t":"ptr","v":"0x0e9cafbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fe110"},"kids_end":{"t":"ptr","v":"0x0e8fe11c"},"kids_cap":{"t":"ptr","v":"0x0e8fe11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fe110"},"kids_end":{"t":"ptr","v":"0x0e8fe11c"},"kids_cap":{"t":"ptr","v":"0x0e8fe11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb138"},"kids_end":{"t":"ptr","v":"0x0e9cb13c"},"kids_cap":{"t":"ptr","v":"0x0e9cb13c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb138"},"kids_end":{"t":"ptr","v":"0x0e9cb13c"},"kids_cap":{"t":"ptr","v":"0x0e9cb13c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9caff8"},"kids_end":{"t":"ptr","v":"0x0e9caffc"},"kids_cap":{"t":"ptr","v":"0x0e9caffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9caff8"},"kids_end":{"t":"ptr","v":"0x0e9caffc"},"kids_cap":{"t":"ptr","v":"0x0e9caffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb018"},"kids_end":{"t":"ptr","v":"0x0e9cb01c"},"kids_cap":{"t":"ptr","v":"0x0e9cb01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb018"},"kids_end":{"t":"ptr","v":"0x0e9cb01c"},"kids_cap":{"t":"ptr","v":"0x0e9cb01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb0a8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb0a8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb028"},"kids_end":{"t":"ptr","v":"0x0e9cb02c"},"kids_cap":{"t":"ptr","v":"0x0e9cb02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb028"},"kids_end":{"t":"ptr","v":"0x0e9cb02c"},"kids_cap":{"t":"ptr","v":"0x0e9cb02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb038"},"kids_end":{"t":"ptr","v":"0x0e9cb040"},"kids_cap":{"t":"ptr","v":"0x0e9cb040"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb038"},"kids_end":{"t":"ptr","v":"0x0e9cb040"},"kids_cap":{"t":"ptr","v":"0x0e9cb040"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb048"},"kids_end":{"t":"ptr","v":"0x0e9cb050"},"kids_cap":{"t":"ptr","v":"0x0e9cb050"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb048"},"kids_end":{"t":"ptr","v":"0x0e9cb050"},"kids_cap":{"t":"ptr","v":"0x0e9cb050"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d358"},"kids_end":{"t":"ptr","v":"0x0e88d36c"},"kids_cap":{"t":"ptr","v":"0x0e88d36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d358"},"kids_end":{"t":"ptr","v":"0x0e88d36c"},"kids_cap":{"t":"ptr","v":"0x0e88d36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe218"},"kids_end":{"t":"ptr","v":"0x0e8fe224"},"kids_cap":{"t":"ptr","v":"0x0e8fe224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe218"},"kids_end":{"t":"ptr","v":"0x0e8fe224"},"kids_cap":{"t":"ptr","v":"0x0e8fe224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb058"},"kids_end":{"t":"ptr","v":"0x0e9cb05c"},"kids_cap":{"t":"ptr","v":"0x0e9cb05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb058"},"kids_end":{"t":"ptr","v":"0x0e9cb05c"},"kids_cap":{"t":"ptr","v":"0x0e9cb05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb0b8"},"kids_end":{"t":"ptr","v":"0x0e9cb0bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb0b8"},"kids_end":{"t":"ptr","v":"0x0e9cb0bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e92edd8"},"kids_end":{"t":"ptr","v":"0x0e92eddc"},"kids_cap":{"t":"ptr","v":"0x0e92eddc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e92edd8"},"kids_end":{"t":"ptr","v":"0x0e92eddc"},"kids_cap":{"t":"ptr","v":"0x0e92eddc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e92ed78"},"kids_end":{"t":"ptr","v":"0x0e92ed7c"},"kids_cap":{"t":"ptr","v":"0x0e92ed7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e92ed78"},"kids_end":{"t":"ptr","v":"0x0e92ed7c"},"kids_cap":{"t":"ptr","v":"0x0e92ed7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e92ede8"},"kids_end":{"t":"ptr","v":"0x0e92edf0"},"kids_cap":{"t":"ptr","v":"0x0e92edf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e92ede8"},"kids_end":{"t":"ptr","v":"0x0e92edf0"},"kids_cap":{"t":"ptr","v":"0x0e92edf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe020"},"kids_end":{"t":"ptr","v":"0x0e8fe02c"},"kids_cap":{"t":"ptr","v":"0x0e8fe02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe020"},"kids_end":{"t":"ptr","v":"0x0e8fe02c"},"kids_cap":{"t":"ptr","v":"0x0e8fe02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e92edb8"},"kids_end":{"t":"ptr","v":"0x0e92edc0"},"kids_cap":{"t":"ptr","v":"0x0e92edc0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e92edb8"},"kids_end":{"t":"ptr","v":"0x0e92edc0"},"kids_cap":{"t":"ptr","v":"0x0e92edc0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e92ee48"},"kids_end":{"t":"ptr","v":"0x0e92ee50"},"kids_cap":{"t":"ptr","v":"0x0e92ee50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e92ee48"},"kids_end":{"t":"ptr","v":"0x0e92ee50"},"kids_cap":{"t":"ptr","v":"0x0e92ee50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e92eeb8"},"kids_end":{"t":"ptr","v":"0x0e92eebc"},"kids_cap":{"t":"ptr","v":"0x0e92eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e92eeb8"},"kids_end":{"t":"ptr","v":"0x0e92eebc"},"kids_cap":{"t":"ptr","v":"0x0e92eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe0c8"},"kids_end":{"t":"ptr","v":"0x0e8fe0d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe0c8"},"kids_end":{"t":"ptr","v":"0x0e8fe0d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fe0f8"},"kids_end":{"t":"ptr","v":"0x0e8fe104"},"kids_cap":{"t":"ptr","v":"0x0e8fe104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fe0f8"},"kids_end":{"t":"ptr","v":"0x0e8fe104"},"kids_cap":{"t":"ptr","v":"0x0e8fe104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe350"},"kids_end":{"t":"ptr","v":"0x0e8fe360"},"kids_cap":{"t":"ptr","v":"0x0e8fe360"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe350"},"kids_end":{"t":"ptr","v":"0x0e8fe360"},"kids_cap":{"t":"ptr","v":"0x0e8fe360"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e92eec8"},"kids_end":{"t":"ptr","v":"0x0e92eed0"},"kids_cap":{"t":"ptr","v":"0x0e92eed0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e92eec8"},"kids_end":{"t":"ptr","v":"0x0e92eed0"},"kids_cap":{"t":"ptr","v":"0x0e92eed0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e92ee18"},"kids_end":{"t":"ptr","v":"0x0e92ee1c"},"kids_cap":{"t":"ptr","v":"0x0e92ee1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e92ee18"},"kids_end":{"t":"ptr","v":"0x0e92ee1c"},"kids_cap":{"t":"ptr","v":"0x0e92ee1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe380"},"kids_end":{"t":"ptr","v":"0x0e8fe38c"},"kids_cap":{"t":"ptr","v":"0x0e8fe38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe380"},"kids_end":{"t":"ptr","v":"0x0e8fe38c"},"kids_cap":{"t":"ptr","v":"0x0e8fe38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e92ee58"},"kids_end":{"t":"ptr","v":"0x0e92ee5c"},"kids_cap":{"t":"ptr","v":"0x0e92ee5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e92ee58"},"kids_end":{"t":"ptr","v":"0x0e92ee5c"},"kids_cap":{"t":"ptr","v":"0x0e92ee5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e92edc8"},"kids_end":{"t":"ptr","v":"0x0e92edcc"},"kids_cap":{"t":"ptr","v":"0x0e92edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e92edc8"},"kids_end":{"t":"ptr","v":"0x0e92edcc"},"kids_cap":{"t":"ptr","v":"0x0e92edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e92ee28"},"kids_end":{"t":"ptr","v":"0x0e92ee2c"},"kids_cap":{"t":"ptr","v":"0x0e92ee2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e92ee28"},"kids_end":{"t":"ptr","v":"0x0e92ee2c"},"kids_cap":{"t":"ptr","v":"0x0e92ee2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e92ece8"},"kids_end":{"t":"ptr","v":"0x0e92ecec"},"kids_cap":{"t":"ptr","v":"0x0e92ecec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e92ece8"},"kids_end":{"t":"ptr","v":"0x0e92ecec"},"kids_cap":{"t":"ptr","v":"0x0e92ecec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe3e0"},"kids_end":{"t":"ptr","v":"0x0e8fe3ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe3e0"},"kids_end":{"t":"ptr","v":"0x0e8fe3ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e92ed38"},"kids_end":{"t":"ptr","v":"0x0e92ed3c"},"kids_cap":{"t":"ptr","v":"0x0e92ed3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e92ed38"},"kids_end":{"t":"ptr","v":"0x0e92ed3c"},"kids_cap":{"t":"ptr","v":"0x0e92ed3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e92ed58"},"kids_end":{"t":"ptr","v":"0x0e92ed60"},"kids_cap":{"t":"ptr","v":"0x0e92ed60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e92ed58"},"kids_end":{"t":"ptr","v":"0x0e92ed60"},"kids_cap":{"t":"ptr","v":"0x0e92ed60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fe6f8"},"kids_end":{"t":"ptr","v":"0x0e8fe704"},"kids_cap":{"t":"ptr","v":"0x0e8fe704"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fe6f8"},"kids_end":{"t":"ptr","v":"0x0e8fe704"},"kids_cap":{"t":"ptr","v":"0x0e8fe704"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e92edf8"},"kids_end":{"t":"ptr","v":"0x0e92edfc"},"kids_cap":{"t":"ptr","v":"0x0e92edfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e92edf8"},"kids_end":{"t":"ptr","v":"0x0e92edfc"},"kids_cap":{"t":"ptr","v":"0x0e92edfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e92ee38"},"kids_end":{"t":"ptr","v":"0x0e92ee40"},"kids_cap":{"t":"ptr","v":"0x0e92ee40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e92ee38"},"kids_end":{"t":"ptr","v":"0x0e92ee40"},"kids_cap":{"t":"ptr","v":"0x0e92ee40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e92ee08"},"kids_end":{"t":"ptr","v":"0x0e92ee0c"},"kids_cap":{"t":"ptr","v":"0x0e92ee0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e92ee08"},"kids_end":{"t":"ptr","v":"0x0e92ee0c"},"kids_cap":{"t":"ptr","v":"0x0e92ee0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e92ee68"},"kids_end":{"t":"ptr","v":"0x0e92ee70"},"kids_cap":{"t":"ptr","v":"0x0e92ee70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e92ee68"},"kids_end":{"t":"ptr","v":"0x0e92ee70"},"kids_cap":{"t":"ptr","v":"0x0e92ee70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e92ee78"},"kids_end":{"t":"ptr","v":"0x0e92ee80"},"kids_cap":{"t":"ptr","v":"0x0e92ee80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e92ee78"},"kids_end":{"t":"ptr","v":"0x0e92ee80"},"kids_cap":{"t":"ptr","v":"0x0e92ee80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e92ed48"},"kids_end":{"t":"ptr","v":"0x0e92ed50"},"kids_cap":{"t":"ptr","v":"0x0e92ed50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e92ed48"},"kids_end":{"t":"ptr","v":"0x0e92ed50"},"kids_cap":{"t":"ptr","v":"0x0e92ed50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e92eed8"},"kids_end":{"t":"ptr","v":"0x0e92eee0"},"kids_cap":{"t":"ptr","v":"0x0e92eee0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e92eed8"},"kids_end":{"t":"ptr","v":"0x0e92eee0"},"kids_cap":{"t":"ptr","v":"0x0e92eee0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e92ed88"},"kids_end":{"t":"ptr","v":"0x0e92ed8c"},"kids_cap":{"t":"ptr","v":"0x0e92ed8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e92ed88"},"kids_end":{"t":"ptr","v":"0x0e92ed8c"},"kids_cap":{"t":"ptr","v":"0x0e92ed8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e92ed68"},"kids_end":{"t":"ptr","v":"0x0e92ed6c"},"kids_cap":{"t":"ptr","v":"0x0e92ed6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e92ed68"},"kids_end":{"t":"ptr","v":"0x0e92ed6c"},"kids_cap":{"t":"ptr","v":"0x0e92ed6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e92ecf8"},"kids_end":{"t":"ptr","v":"0x0e92ed00"},"kids_cap":{"t":"ptr","v":"0x0e92ed00"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e92ecf8"},"kids_end":{"t":"ptr","v":"0x0e92ed00"},"kids_cap":{"t":"ptr","v":"0x0e92ed00"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e92ed08"},"kids_end":{"t":"ptr","v":"0x0e92ed10"},"kids_cap":{"t":"ptr","v":"0x0e92ed10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e92ed08"},"kids_end":{"t":"ptr","v":"0x0e92ed10"},"kids_cap":{"t":"ptr","v":"0x0e92ed10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e92ee98"},"kids_end":{"t":"ptr","v":"0x0e92ee9c"},"kids_cap":{"t":"ptr","v":"0x0e92ee9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e92ee98"},"kids_end":{"t":"ptr","v":"0x0e92ee9c"},"kids_cap":{"t":"ptr","v":"0x0e92ee9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e92ed18"},"kids_end":{"t":"ptr","v":"0x0e92ed1c"},"kids_cap":{"t":"ptr","v":"0x0e92ed1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e92ed18"},"kids_end":{"t":"ptr","v":"0x0e92ed1c"},"kids_cap":{"t":"ptr","v":"0x0e92ed1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e92ee88"},"kids_end":{"t":"ptr","v":"0x0e92ee90"},"kids_cap":{"t":"ptr","v":"0x0e92ee90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e92ee88"},"kids_end":{"t":"ptr","v":"0x0e92ee90"},"kids_cap":{"t":"ptr","v":"0x0e92ee90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e92eea8"},"kids_end":{"t":"ptr","v":"0x0e92eeac"},"kids_cap":{"t":"ptr","v":"0x0e92eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e92eea8"},"kids_end":{"t":"ptr","v":"0x0e92eeac"},"kids_cap":{"t":"ptr","v":"0x0e92eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e92ed28"},"kids_end":{"t":"ptr","v":"0x0e92ed2c"},"kids_cap":{"t":"ptr","v":"0x0e92ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e92ed28"},"kids_end":{"t":"ptr","v":"0x0e92ed2c"},"kids_cap":{"t":"ptr","v":"0x0e92ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e92ed98"},"kids_end":{"t":"ptr","v":"0x0e92eda0"},"kids_cap":{"t":"ptr","v":"0x0e92eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e92ed98"},"kids_end":{"t":"ptr","v":"0x0e92eda0"},"kids_cap":{"t":"ptr","v":"0x0e92eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e92eda8"},"kids_end":{"t":"ptr","v":"0x0e92edac"},"kids_cap":{"t":"ptr","v":"0x0e92edac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e92eda8"},"kids_end":{"t":"ptr","v":"0x0e92edac"},"kids_cap":{"t":"ptr","v":"0x0e92edac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e92f7a8"},"kids_end":{"t":"ptr","v":"0x0e92f7ac"},"kids_cap":{"t":"ptr","v":"0x0e92f7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e92f7a8"},"kids_end":{"t":"ptr","v":"0x0e92f7ac"},"kids_cap":{"t":"ptr","v":"0x0e92f7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fe6c8"},"kids_end":{"t":"ptr","v":"0x0e8fe6d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fe6c8"},"kids_end":{"t":"ptr","v":"0x0e8fe6d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fe620"},"kids_end":{"t":"ptr","v":"0x0e8fe630"},"kids_cap":{"t":"ptr","v":"0x0e8fe630"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fe620"},"kids_end":{"t":"ptr","v":"0x0e8fe630"},"kids_cap":{"t":"ptr","v":"0x0e8fe630"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e92f6e8"},"kids_end":{"t":"ptr","v":"0x0e92f6f0"},"kids_cap":{"t":"ptr","v":"0x0e92f6f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e92f6e8"},"kids_end":{"t":"ptr","v":"0x0e92f6f0"},"kids_cap":{"t":"ptr","v":"0x0e92f6f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e92f7b8"},"kids_end":{"t":"ptr","v":"0x0e92f7c0"},"kids_cap":{"t":"ptr","v":"0x0e92f7c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e92f7b8"},"kids_end":{"t":"ptr","v":"0x0e92f7c0"},"kids_cap":{"t":"ptr","v":"0x0e92f7c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e92f818"},"kids_end":{"t":"ptr","v":"0x0e92f81c"},"kids_cap":{"t":"ptr","v":"0x0e92f81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e92f818"},"kids_end":{"t":"ptr","v":"0x0e92f81c"},"kids_cap":{"t":"ptr","v":"0x0e92f81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e92f6f8"},"kids_end":{"t":"ptr","v":"0x0e92f700"},"kids_cap":{"t":"ptr","v":"0x0e92f700"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e92f6f8"},"kids_end":{"t":"ptr","v":"0x0e92f700"},"kids_cap":{"t":"ptr","v":"0x0e92f700"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e92f7d8"},"kids_end":{"t":"ptr","v":"0x0e92f7e0"},"kids_cap":{"t":"ptr","v":"0x0e92f7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e92f7d8"},"kids_end":{"t":"ptr","v":"0x0e92f7e0"},"kids_cap":{"t":"ptr","v":"0x0e92f7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e92f708"},"kids_end":{"t":"ptr","v":"0x0e92f710"},"kids_cap":{"t":"ptr","v":"0x0e92f710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e92f708"},"kids_end":{"t":"ptr","v":"0x0e92f710"},"kids_cap":{"t":"ptr","v":"0x0e92f710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e92f7e8"},"kids_end":{"t":"ptr","v":"0x0e92f7ec"},"kids_cap":{"t":"ptr","v":"0x0e92f7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e92f7e8"},"kids_end":{"t":"ptr","v":"0x0e92f7ec"},"kids_cap":{"t":"ptr","v":"0x0e92f7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e92f7f8"},"kids_end":{"t":"ptr","v":"0x0e92f7fc"},"kids_cap":{"t":"ptr","v":"0x0e92f7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e92f7f8"},"kids_end":{"t":"ptr","v":"0x0e92f7fc"},"kids_cap":{"t":"ptr","v":"0x0e92f7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e92f808"},"kids_end":{"t":"ptr","v":"0x0e92f810"},"kids_cap":{"t":"ptr","v":"0x0e92f810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e92f808"},"kids_end":{"t":"ptr","v":"0x0e92f810"},"kids_cap":{"t":"ptr","v":"0x0e92f810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e92fa68"},"kids_end":{"t":"ptr","v":"0x0e92fa6c"},"kids_cap":{"t":"ptr","v":"0x0e92fa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e92fa68"},"kids_end":{"t":"ptr","v":"0x0e92fa6c"},"kids_cap":{"t":"ptr","v":"0x0e92fa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe728"},"kids_end":{"t":"ptr","v":"0x0e8fe734"},"kids_cap":{"t":"ptr","v":"0x0e8fe734"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe728"},"kids_end":{"t":"ptr","v":"0x0e8fe734"},"kids_cap":{"t":"ptr","v":"0x0e8fe734"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e92f908"},"kids_end":{"t":"ptr","v":"0x0e92f90c"},"kids_cap":{"t":"ptr","v":"0x0e92f90c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e92f908"},"kids_end":{"t":"ptr","v":"0x0e92f90c"},"kids_cap":{"t":"ptr","v":"0x0e92f90c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d258"},"kids_end":{"t":"ptr","v":"0x0e88d26c"},"kids_cap":{"t":"ptr","v":"0x0e88d26c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d258"},"kids_end":{"t":"ptr","v":"0x0e88d26c"},"kids_cap":{"t":"ptr","v":"0x0e88d26c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e92faa8"},"kids_end":{"t":"ptr","v":"0x0e92faac"},"kids_cap":{"t":"ptr","v":"0x0e92faac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e92faa8"},"kids_end":{"t":"ptr","v":"0x0e92faac"},"kids_cap":{"t":"ptr","v":"0x0e92faac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e92f938"},"kids_end":{"t":"ptr","v":"0x0e92f93c"},"kids_cap":{"t":"ptr","v":"0x0e92f93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e92f938"},"kids_end":{"t":"ptr","v":"0x0e92f93c"},"kids_cap":{"t":"ptr","v":"0x0e92f93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e92f988"},"kids_end":{"t":"ptr","v":"0x0e92f98c"},"kids_cap":{"t":"ptr","v":"0x0e92f98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e92f988"},"kids_end":{"t":"ptr","v":"0x0e92f98c"},"kids_cap":{"t":"ptr","v":"0x0e92f98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e92f9f8"},"kids_end":{"t":"ptr","v":"0x0e92f9fc"},"kids_cap":{"t":"ptr","v":"0x0e92f9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e92f9f8"},"kids_end":{"t":"ptr","v":"0x0e92f9fc"},"kids_cap":{"t":"ptr","v":"0x0e92f9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9309f8"},"kids_end":{"t":"ptr","v":"0x0e9309fc"},"kids_cap":{"t":"ptr","v":"0x0e9309fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9309f8"},"kids_end":{"t":"ptr","v":"0x0e9309fc"},"kids_cap":{"t":"ptr","v":"0x0e9309fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe740"},"kids_end":{"t":"ptr","v":"0x0e8fe750"},"kids_cap":{"t":"ptr","v":"0x0e8fe750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe740"},"kids_end":{"t":"ptr","v":"0x0e8fe750"},"kids_cap":{"t":"ptr","v":"0x0e8fe750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fe638"},"kids_end":{"t":"ptr","v":"0x0e8fe644"},"kids_cap":{"t":"ptr","v":"0x0e8fe644"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fe638"},"kids_end":{"t":"ptr","v":"0x0e8fe644"},"kids_cap":{"t":"ptr","v":"0x0e8fe644"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e930908"},"kids_end":{"t":"ptr","v":"0x0e93090c"},"kids_cap":{"t":"ptr","v":"0x0e93090c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e930908"},"kids_end":{"t":"ptr","v":"0x0e93090c"},"kids_cap":{"t":"ptr","v":"0x0e93090c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9309a8"},"kids_end":{"t":"ptr","v":"0x0e9309ac"},"kids_cap":{"t":"ptr","v":"0x0e9309ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9309a8"},"kids_end":{"t":"ptr","v":"0x0e9309ac"},"kids_cap":{"t":"ptr","v":"0x0e9309ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe7e8"},"kids_end":{"t":"ptr","v":"0x0e8fe7f8"},"kids_cap":{"t":"ptr","v":"0x0e8fe7f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe7e8"},"kids_end":{"t":"ptr","v":"0x0e8fe7f8"},"kids_cap":{"t":"ptr","v":"0x0e8fe7f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9308e8"},"kids_end":{"t":"ptr","v":"0x0e9308f0"},"kids_cap":{"t":"ptr","v":"0x0e9308f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9308e8"},"kids_end":{"t":"ptr","v":"0x0e9308f0"},"kids_cap":{"t":"ptr","v":"0x0e9308f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e930968"},"kids_end":{"t":"ptr","v":"0x0e93096c"},"kids_cap":{"t":"ptr","v":"0x0e93096c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e930968"},"kids_end":{"t":"ptr","v":"0x0e93096c"},"kids_cap":{"t":"ptr","v":"0x0e93096c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e930978"},"kids_end":{"t":"ptr","v":"0x0e93097c"},"kids_cap":{"t":"ptr","v":"0x0e93097c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e930978"},"kids_end":{"t":"ptr","v":"0x0e93097c"},"kids_cap":{"t":"ptr","v":"0x0e93097c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fe758"},"kids_end":{"t":"ptr","v":"0x0e8fe764"},"kids_cap":{"t":"ptr","v":"0x0e8fe764"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fe758"},"kids_end":{"t":"ptr","v":"0x0e8fe764"},"kids_cap":{"t":"ptr","v":"0x0e8fe764"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9308f8"},"kids_end":{"t":"ptr","v":"0x0e930900"},"kids_cap":{"t":"ptr","v":"0x0e930900"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9308f8"},"kids_end":{"t":"ptr","v":"0x0e930900"},"kids_cap":{"t":"ptr","v":"0x0e930900"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d0b8"},"kids_end":{"t":"ptr","v":"0x0e88d0cc"},"kids_cap":{"t":"ptr","v":"0x0e88d0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d0b8"},"kids_end":{"t":"ptr","v":"0x0e88d0cc"},"kids_cap":{"t":"ptr","v":"0x0e88d0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e930918"},"kids_end":{"t":"ptr","v":"0x0e93091c"},"kids_cap":{"t":"ptr","v":"0x0e93091c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e930918"},"kids_end":{"t":"ptr","v":"0x0e93091c"},"kids_cap":{"t":"ptr","v":"0x0e93091c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e930988"},"kids_end":{"t":"ptr","v":"0x0e93098c"},"kids_cap":{"t":"ptr","v":"0x0e93098c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e930988"},"kids_end":{"t":"ptr","v":"0x0e93098c"},"kids_cap":{"t":"ptr","v":"0x0e93098c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9309d8"},"kids_end":{"t":"ptr","v":"0x0e9309dc"},"kids_cap":{"t":"ptr","v":"0x0e9309dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9309d8"},"kids_end":{"t":"ptr","v":"0x0e9309dc"},"kids_cap":{"t":"ptr","v":"0x0e9309dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e930998"},"kids_end":{"t":"ptr","v":"0x0e93099c"},"kids_cap":{"t":"ptr","v":"0x0e93099c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e930998"},"kids_end":{"t":"ptr","v":"0x0e93099c"},"kids_cap":{"t":"ptr","v":"0x0e93099c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9309b8"},"kids_end":{"t":"ptr","v":"0x0e9309bc"},"kids_cap":{"t":"ptr","v":"0x0e9309bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9309b8"},"kids_end":{"t":"ptr","v":"0x0e9309bc"},"kids_cap":{"t":"ptr","v":"0x0e9309bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e92eb48"},"kids_end":{"t":"ptr","v":"0x0e92eb50"},"kids_cap":{"t":"ptr","v":"0x0e92eb50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e92eb48"},"kids_end":{"t":"ptr","v":"0x0e92eb50"},"kids_cap":{"t":"ptr","v":"0x0e92eb50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d1b8"},"kids_end":{"t":"ptr","v":"0x0e88d1cc"},"kids_cap":{"t":"ptr","v":"0x0e88d1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d1b8"},"kids_end":{"t":"ptr","v":"0x0e88d1cc"},"kids_cap":{"t":"ptr","v":"0x0e88d1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e92ecb8"},"kids_end":{"t":"ptr","v":"0x0e92ecbc"},"kids_cap":{"t":"ptr","v":"0x0e92ecbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e92ecb8"},"kids_end":{"t":"ptr","v":"0x0e92ecbc"},"kids_cap":{"t":"ptr","v":"0x0e92ecbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e92eb68"},"kids_end":{"t":"ptr","v":"0x0e92eb6c"},"kids_cap":{"t":"ptr","v":"0x0e92eb6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e92eb68"},"kids_end":{"t":"ptr","v":"0x0e92eb6c"},"kids_cap":{"t":"ptr","v":"0x0e92eb6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e92ebd8"},"kids_end":{"t":"ptr","v":"0x0e92ebdc"},"kids_cap":{"t":"ptr","v":"0x0e92ebdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e92ebd8"},"kids_end":{"t":"ptr","v":"0x0e92ebdc"},"kids_cap":{"t":"ptr","v":"0x0e92ebdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e92eb18"},"kids_end":{"t":"ptr","v":"0x0e92eb20"},"kids_cap":{"t":"ptr","v":"0x0e92eb20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e92eb18"},"kids_end":{"t":"ptr","v":"0x0e92eb20"},"kids_cap":{"t":"ptr","v":"0x0e92eb20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e92eb78"},"kids_end":{"t":"ptr","v":"0x0e92eb80"},"kids_cap":{"t":"ptr","v":"0x0e92eb80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e92eb78"},"kids_end":{"t":"ptr","v":"0x0e92eb80"},"kids_cap":{"t":"ptr","v":"0x0e92eb80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e92ec98"},"kids_end":{"t":"ptr","v":"0x0e92eca0"},"kids_cap":{"t":"ptr","v":"0x0e92eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e92ec98"},"kids_end":{"t":"ptr","v":"0x0e92eca0"},"kids_cap":{"t":"ptr","v":"0x0e92eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e92eb58"},"kids_end":{"t":"ptr","v":"0x0e92eb5c"},"kids_cap":{"t":"ptr","v":"0x0e92eb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e92eb58"},"kids_end":{"t":"ptr","v":"0x0e92eb5c"},"kids_cap":{"t":"ptr","v":"0x0e92eb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e92eca8"},"kids_end":{"t":"ptr","v":"0x0e92ecac"},"kids_cap":{"t":"ptr","v":"0x0e92ecac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e92eca8"},"kids_end":{"t":"ptr","v":"0x0e92ecac"},"kids_cap":{"t":"ptr","v":"0x0e92ecac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe5c0"},"kids_end":{"t":"ptr","v":"0x0e8fe5cc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe5c0"},"kids_end":{"t":"ptr","v":"0x0e8fe5cc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe800"},"kids_end":{"t":"ptr","v":"0x0e8fe80c"},"kids_cap":{"t":"ptr","v":"0x0e8fe80c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe800"},"kids_end":{"t":"ptr","v":"0x0e8fe80c"},"kids_cap":{"t":"ptr","v":"0x0e8fe80c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe770"},"kids_end":{"t":"ptr","v":"0x0e8fe77c"},"kids_cap":{"t":"ptr","v":"0x0e8fe77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe770"},"kids_end":{"t":"ptr","v":"0x0e8fe77c"},"kids_cap":{"t":"ptr","v":"0x0e8fe77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe7a0"},"kids_end":{"t":"ptr","v":"0x0e8fe7ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe7a0"},"kids_end":{"t":"ptr","v":"0x0e8fe7ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe818"},"kids_end":{"t":"ptr","v":"0x0e8fe824"},"kids_cap":{"t":"ptr","v":"0x0e8fe824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe818"},"kids_end":{"t":"ptr","v":"0x0e8fe824"},"kids_cap":{"t":"ptr","v":"0x0e8fe824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d1f8"},"kids_end":{"t":"ptr","v":"0x0e88d210"},"kids_cap":{"t":"ptr","v":"0x0e88d210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d1f8"},"kids_end":{"t":"ptr","v":"0x0e88d210"},"kids_cap":{"t":"ptr","v":"0x0e88d210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e92ec28"},"kids_end":{"t":"ptr","v":"0x0e92ec30"},"kids_cap":{"t":"ptr","v":"0x0e92ec30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e92ec28"},"kids_end":{"t":"ptr","v":"0x0e92ec30"},"kids_cap":{"t":"ptr","v":"0x0e92ec30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e92ec68"},"kids_end":{"t":"ptr","v":"0x0e92ec70"},"kids_cap":{"t":"ptr","v":"0x0e92ec70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e92ec68"},"kids_end":{"t":"ptr","v":"0x0e92ec70"},"kids_cap":{"t":"ptr","v":"0x0e92ec70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e92eba8"},"kids_end":{"t":"ptr","v":"0x0e92ebb0"},"kids_cap":{"t":"ptr","v":"0x0e92ebb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e92eba8"},"kids_end":{"t":"ptr","v":"0x0e92ebb0"},"kids_cap":{"t":"ptr","v":"0x0e92ebb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e92ec18"},"kids_end":{"t":"ptr","v":"0x0e92ec20"},"kids_cap":{"t":"ptr","v":"0x0e92ec20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e92ec18"},"kids_end":{"t":"ptr","v":"0x0e92ec20"},"kids_cap":{"t":"ptr","v":"0x0e92ec20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e92eae8"},"kids_end":{"t":"ptr","v":"0x0e92eaec"},"kids_cap":{"t":"ptr","v":"0x0e92eaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e92eae8"},"kids_end":{"t":"ptr","v":"0x0e92eaec"},"kids_cap":{"t":"ptr","v":"0x0e92eaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e92ec58"},"kids_end":{"t":"ptr","v":"0x0e92ec5c"},"kids_cap":{"t":"ptr","v":"0x0e92ec5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e92ec58"},"kids_end":{"t":"ptr","v":"0x0e92ec5c"},"kids_cap":{"t":"ptr","v":"0x0e92ec5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e92ec08"},"kids_end":{"t":"ptr","v":"0x0e92ec0c"},"kids_cap":{"t":"ptr","v":"0x0e92ec0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e92ec08"},"kids_end":{"t":"ptr","v":"0x0e92ec0c"},"kids_cap":{"t":"ptr","v":"0x0e92ec0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e92ecc8"},"kids_end":{"t":"ptr","v":"0x0e92eccc"},"kids_cap":{"t":"ptr","v":"0x0e92eccc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e92ecc8"},"kids_end":{"t":"ptr","v":"0x0e92eccc"},"kids_cap":{"t":"ptr","v":"0x0e92eccc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e92ecd8"},"kids_end":{"t":"ptr","v":"0x0e92ecdc"},"kids_cap":{"t":"ptr","v":"0x0e92ecdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e92ecd8"},"kids_end":{"t":"ptr","v":"0x0e92ecdc"},"kids_cap":{"t":"ptr","v":"0x0e92ecdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e92eb88"},"kids_end":{"t":"ptr","v":"0x0e92eb8c"},"kids_cap":{"t":"ptr","v":"0x0e92eb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e92eb88"},"kids_end":{"t":"ptr","v":"0x0e92eb8c"},"kids_cap":{"t":"ptr","v":"0x0e92eb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e92ebb8"},"kids_end":{"t":"ptr","v":"0x0e92ebbc"},"kids_cap":{"t":"ptr","v":"0x0e92ebbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e92ebb8"},"kids_end":{"t":"ptr","v":"0x0e92ebbc"},"kids_cap":{"t":"ptr","v":"0x0e92ebbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e92eaf8"},"kids_end":{"t":"ptr","v":"0x0e92eafc"},"kids_cap":{"t":"ptr","v":"0x0e92eafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e92eaf8"},"kids_end":{"t":"ptr","v":"0x0e92eafc"},"kids_cap":{"t":"ptr","v":"0x0e92eafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e92eb98"},"kids_end":{"t":"ptr","v":"0x0e92eb9c"},"kids_cap":{"t":"ptr","v":"0x0e92eb9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e92eb98"},"kids_end":{"t":"ptr","v":"0x0e92eb9c"},"kids_cap":{"t":"ptr","v":"0x0e92eb9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e92ebe8"},"kids_end":{"t":"ptr","v":"0x0e92ebec"},"kids_cap":{"t":"ptr","v":"0x0e92ebec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e92ebe8"},"kids_end":{"t":"ptr","v":"0x0e92ebec"},"kids_cap":{"t":"ptr","v":"0x0e92ebec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e92eb08"},"kids_end":{"t":"ptr","v":"0x0e92eb0c"},"kids_cap":{"t":"ptr","v":"0x0e92eb0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e92eb08"},"kids_end":{"t":"ptr","v":"0x0e92eb0c"},"kids_cap":{"t":"ptr","v":"0x0e92eb0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"before":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}},"ours":{"ret":null,"side":{"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":355},"next_index":{"t":"i64","v":269}}}},"overbudget":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e9caf28"},"kids_end":{"t":"ptr","v":"0x0e9caf2c"},"kids_cap":{"t":"ptr","v":"0x0e9caf2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f140"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e9cae68"},"kids_end":{"t":"ptr","v":"0x0e9cae6c"},"kids_cap":{"t":"ptr","v":"0x0e9cae6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e780"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e9cadf8"},"kids_end":{"t":"ptr","v":"0x0e9cadfc"},"kids_cap":{"t":"ptr","v":"0x0e9cadfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f3b0"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e9caea8"},"kids_end":{"t":"ptr","v":"0x0e9caeb0"},"kids_cap":{"t":"ptr","v":"0x0e9caeb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e9caf38"},"kids_end":{"t":"ptr","v":"0x0e9caf40"},"kids_cap":{"t":"ptr","v":"0x0e9caf40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f890"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e9cad68"},"kids_end":{"t":"ptr","v":"0x0e9cad6c"},"kids_cap":{"t":"ptr","v":"0x0e9cad6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e2a0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e9caeb8"},"kids_end":{"t":"ptr","v":"0x0e9caebc"},"kids_cap":{"t":"ptr","v":"0x0e9caebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e3d8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e9caef8"},"kids_end":{"t":"ptr","v":"0x0e9caefc"},"kids_cap":{"t":"ptr","v":"0x0e9caefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fea8"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe0e0"},"kids_end":{"t":"ptr","v":"0x0e8fe0ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f620"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e9cad88"},"kids_end":{"t":"ptr","v":"0x0e9cad90"},"kids_cap":{"t":"ptr","v":"0x0e9cad90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ed98"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe038"},"kids_end":{"t":"ptr","v":"0x0e8fe048"},"kids_cap":{"t":"ptr","v":"0x0e8fe048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e510"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e9cadb8"},"kids_end":{"t":"ptr","v":"0x0e9cadbc"},"kids_cap":{"t":"ptr","v":"0x0e9cadbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e9cae98"},"kids_end":{"t":"ptr","v":"0x0e9cae9c"},"kids_cap":{"t":"ptr","v":"0x0e9cae9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fdf90"},"kids_end":{"t":"ptr","v":"0x0e8fdf9c"},"kids_cap":{"t":"ptr","v":"0x0e8fdf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68ec60"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e9caec8"},"kids_end":{"t":"ptr","v":"0x0e9caecc"},"kids_cap":{"t":"ptr","v":"0x0e9caecc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fd70"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68fc38"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e9cae08"},"kids_end":{"t":"ptr","v":"0x0e9cae0c"},"kids_cap":{"t":"ptr","v":"0x0e9cae0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68f4e8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e9caed8"},"kids_end":{"t":"ptr","v":"0x0e9caedc"},"kids_cap":{"t":"ptr","v":"0x0e9caedc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e9f0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6939d8"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6922b0"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fdfd8"},"kids_end":{"t":"ptr","v":"0x0e8fdfe4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698140"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe158"},"kids_end":{"t":"ptr","v":"0x0e8fe168"},"kids_cap":{"t":"ptr","v":"0x0e8fe168"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e9cae18"},"kids_end":{"t":"ptr","v":"0x0e9cae1c"},"kids_cap":{"t":"ptr","v":"0x0e9cae1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696c88"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e9cae28"},"kids_end":{"t":"ptr","v":"0x0e9cae2c"},"kids_cap":{"t":"ptr","v":"0x0e9cae2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697648"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e9cb068"},"kids_end":{"t":"ptr","v":"0x0e9cb06c"},"kids_cap":{"t":"ptr","v":"0x0e9cb06c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697d98"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696dc0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e9cb0d8"},"kids_end":{"t":"ptr","v":"0x0e9cb0dc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693630"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e9caf48"},"kids_end":{"t":"ptr","v":"0x0e9caf50"},"kids_cap":{"t":"ptr","v":"0x0e9caf50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6934f8"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe098"},"kids_end":{"t":"ptr","v":"0x0e8fe0a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692a00"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e9cb088"},"kids_end":{"t":"ptr","v":"0x0e9cb090"},"kids_cap":{"t":"ptr","v":"0x0e9cb090"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692520"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692658"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6923e8"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fdfa8"},"kids_end":{"t":"ptr","v":"0x0e8fdfb4"},"kids_cap":{"t":"ptr","v":"0x0e8fdfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe1a0"},"kids_end":{"t":"ptr","v":"0x0e8fe1ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe1ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68eb28"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe008"},"kids_end":{"t":"ptr","v":"0x0e8fe014"},"kids_cap":{"t":"ptr","v":"0x0e8fe014"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693c48"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e9caf98"},"kids_end":{"t":"ptr","v":"0x0e9caf9c"},"kids_cap":{"t":"ptr","v":"0x0e9caf9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692c70"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e9cafd8"},"kids_end":{"t":"ptr","v":"0x0e9cafdc"},"kids_cap":{"t":"ptr","v":"0x0e9cafdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692b38"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6933c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe050"},"kids_end":{"t":"ptr","v":"0x0e8fe05c"},"kids_cap":{"t":"ptr","v":"0x0e8fe05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693018"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e9caf58"},"kids_end":{"t":"ptr","v":"0x0e9caf5c"},"kids_cap":{"t":"ptr","v":"0x0e9caf5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693d80"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e9cb0e8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ec"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6938a0"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e9cb0f8"},"kids_end":{"t":"ptr","v":"0x0e9cb0fc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e9caf68"},"kids_end":{"t":"ptr","v":"0x0e9caf6c"},"kids_cap":{"t":"ptr","v":"0x0e9caf6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693150"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6928c8"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e9cafc8"},"kids_end":{"t":"ptr","v":"0x0e9cafcc"},"kids_cap":{"t":"ptr","v":"0x0e9cafcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692040"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692178"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe1d0"},"kids_end":{"t":"ptr","v":"0x0e8fe1dc"},"kids_cap":{"t":"ptr","v":"0x0e8fe1dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698620"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e9caf78"},"kids_end":{"t":"ptr","v":"0x0e9caf7c"},"kids_cap":{"t":"ptr","v":"0x0e9caf7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698008"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e9cb118"},"kids_end":{"t":"ptr","v":"0x0e9cb11c"},"kids_cap":{"t":"ptr","v":"0x0e9cb11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698b00"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e9cb108"},"kids_end":{"t":"ptr","v":"0x0e9cb10c"},"kids_cap":{"t":"ptr","v":"0x0e9cb10c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699e80"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e9cb0c8"},"kids_end":{"t":"ptr","v":"0x0e9cb0cc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6978b8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e9cb098"},"kids_end":{"t":"ptr","v":"0x0e9cb09c"},"kids_cap":{"t":"ptr","v":"0x0e9cb09c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698758"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e9cb128"},"kids_end":{"t":"ptr","v":"0x0e9cb12c"},"kids_cap":{"t":"ptr","v":"0x0e9cb12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692790"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694180"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694048"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e9caf88"},"kids_end":{"t":"ptr","v":"0x0e9caf8c"},"kids_cap":{"t":"ptr","v":"0x0e9caf8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694db0"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695d88"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe1b8"},"kids_end":{"t":"ptr","v":"0x0e8fe1c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695290"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fdfc0"},"kids_end":{"t":"ptr","v":"0x0e8fdfcc"},"kids_cap":{"t":"ptr","v":"0x0e8fdfcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695c50"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694ee8"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a511c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e9cb078"},"kids_end":{"t":"ptr","v":"0x0e9cb07c"},"kids_cap":{"t":"ptr","v":"0x0e9cb07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695158"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e9cb008"},"kids_end":{"t":"ptr","v":"0x0e9cb010"},"kids_cap":{"t":"ptr","v":"0x0e9cb010"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695ec0"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6943f0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e9cafa8"},"kids_end":{"t":"ptr","v":"0x0e9cafb0"},"kids_cap":{"t":"ptr","v":"0x0e9cafb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921958"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e88d218"},"kids_end":{"t":"ptr","v":"0x0e88d22c"},"kids_cap":{"t":"ptr","v":"0x0e88d22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049200a0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fdff0"},"kids_end":{"t":"ptr","v":"0x0e8fdffc"},"kids_cap":{"t":"ptr","v":"0x0e8fdffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920f98"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e969f00"},"kids_end":{"t":"ptr","v":"0x0e969f24"},"kids_cap":{"t":"ptr","v":"0x0e969f24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921478"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e9cafe8"},"kids_end":{"t":"ptr","v":"0x0e9cafec"},"kids_cap":{"t":"ptr","v":"0x0e9cafec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921820"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e9cafb8"},"kids_end":{"t":"ptr","v":"0x0e9cafbc"},"kids_cap":{"t":"ptr","v":"0x0e9cafbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e68e168"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049221e0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920980"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fe110"},"kids_end":{"t":"ptr","v":"0x0e8fe11c"},"kids_cap":{"t":"ptr","v":"0x0e8fe11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f818"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f470"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e9cb138"},"kids_end":{"t":"ptr","v":"0x0e9cb13c"},"kids_cap":{"t":"ptr","v":"0x0e9cb13c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920e60"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049215b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e9caff8"},"kids_end":{"t":"ptr","v":"0x0e9caffc"},"kids_cap":{"t":"ptr","v":"0x0e9caffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920848"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a50e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e9cb018"},"kids_end":{"t":"ptr","v":"0x0e9cb01c"},"kids_cap":{"t":"ptr","v":"0x0e9cb01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921d00"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e9cb0a8"},"kids_end":{"t":"ptr","v":"0x0e9cb0ac"},"kids_cap":{"t":"ptr","v":"0x0e9cb0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04921e38"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e9cb028"},"kids_end":{"t":"ptr","v":"0x0e9cb02c"},"kids_cap":{"t":"ptr","v":"0x0e9cb02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bb18"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dd00"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c980"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e9cb038"},"kids_end":{"t":"ptr","v":"0x0e9cb040"},"kids_cap":{"t":"ptr","v":"0x0e9cb040"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b9e0"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e9cb048"},"kids_end":{"t":"ptr","v":"0x0e9cb050"},"kids_cap":{"t":"ptr","v":"0x0e9cb050"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d0d0"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cf98"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bc50"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e88d358"},"kids_end":{"t":"ptr","v":"0x0e88d36c"},"kids_cap":{"t":"ptr","v":"0x0e88d36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6948d0"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe218"},"kids_end":{"t":"ptr","v":"0x0e8fe224"},"kids_cap":{"t":"ptr","v":"0x0e8fe224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cab8"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e588"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e9cb058"},"kids_end":{"t":"ptr","v":"0x0e9cb05c"},"kids_cap":{"t":"ptr","v":"0x0e9cb05c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d820"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e9cb0b8"},"kids_end":{"t":"ptr","v":"0x0e9cb0bc"},"kids_cap":{"t":"ptr","v":"0x0e9cb0bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b8a8"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e92edd8"},"kids_end":{"t":"ptr","v":"0x0e92eddc"},"kids_cap":{"t":"ptr","v":"0x0e92eddc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6959e0"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e92ed78"},"kids_end":{"t":"ptr","v":"0x0e92ed7c"},"kids_cap":{"t":"ptr","v":"0x0e92ed7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e318"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e92ede8"},"kids_end":{"t":"ptr","v":"0x0e92edf0"},"kids_cap":{"t":"ptr","v":"0x0e92edf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a518e8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe020"},"kids_end":{"t":"ptr","v":"0x0e8fe02c"},"kids_cap":{"t":"ptr","v":"0x0e8fe02c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a517b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e92edb8"},"kids_end":{"t":"ptr","v":"0x0e92edc0"},"kids_cap":{"t":"ptr","v":"0x0e92edc0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bec0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e92ee48"},"kids_end":{"t":"ptr","v":"0x0e92ee50"},"kids_cap":{"t":"ptr","v":"0x0e92ee50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492c848"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e92eeb8"},"kids_end":{"t":"ptr","v":"0x0e92eebc"},"kids_cap":{"t":"ptr","v":"0x0e92eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e450"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe0c8"},"kids_end":{"t":"ptr","v":"0x0e8fe0d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d6e8"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cbf0"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fe0f8"},"kids_end":{"t":"ptr","v":"0x0e8fe104"},"kids_cap":{"t":"ptr","v":"0x0e8fe104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bd88"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe350"},"kids_end":{"t":"ptr","v":"0x0e8fe360"},"kids_cap":{"t":"ptr","v":"0x0e8fe360"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c4d8"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e92eec8"},"kids_end":{"t":"ptr","v":"0x0e92eed0"},"kids_cap":{"t":"ptr","v":"0x0e92eed0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694c78"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c268"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e92ee18"},"kids_end":{"t":"ptr","v":"0x0e92ee1c"},"kids_cap":{"t":"ptr","v":"0x0e92ee1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe380"},"kids_end":{"t":"ptr","v":"0x0e8fe38c"},"kids_cap":{"t":"ptr","v":"0x0e8fe38c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0490ff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e92ee58"},"kids_end":{"t":"ptr","v":"0x0e92ee5c"},"kids_cap":{"t":"ptr","v":"0x0e92ee5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3b638"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e92edc8"},"kids_end":{"t":"ptr","v":"0x0e92edcc"},"kids_cap":{"t":"ptr","v":"0x0e92edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3c3a0"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3bff8"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e6c0"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e92ee28"},"kids_end":{"t":"ptr","v":"0x0e92ee2c"},"kids_cap":{"t":"ptr","v":"0x0e92ee2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e92ece8"},"kids_end":{"t":"ptr","v":"0x0e92ecec"},"kids_cap":{"t":"ptr","v":"0x0e92ecec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492de38"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a51428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe3e0"},"kids_end":{"t":"ptr","v":"0x0e8fe3ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe3ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e92ed38"},"kids_end":{"t":"ptr","v":"0x0e92ed3c"},"kids_cap":{"t":"ptr","v":"0x0e92ed3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692ee0"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e92ed58"},"kids_end":{"t":"ptr","v":"0x0e92ed60"},"kids_cap":{"t":"ptr","v":"0x0e92ed60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e692da8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fe6f8"},"kids_end":{"t":"ptr","v":"0x0e8fe704"},"kids_cap":{"t":"ptr","v":"0x0e8fe704"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6958a8"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6942b8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e92edf8"},"kids_end":{"t":"ptr","v":"0x0e92edfc"},"kids_cap":{"t":"ptr","v":"0x0e92edfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694b40"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693eb8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e92ee38"},"kids_end":{"t":"ptr","v":"0x0e92ee40"},"kids_cap":{"t":"ptr","v":"0x0e92ee40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694528"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e92ee08"},"kids_end":{"t":"ptr","v":"0x0e92ee0c"},"kids_cap":{"t":"ptr","v":"0x0e92ee0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694a08"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e92ee68"},"kids_end":{"t":"ptr","v":"0x0e92ee70"},"kids_cap":{"t":"ptr","v":"0x0e92ee70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e694660"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e693288"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e92ee78"},"kids_end":{"t":"ptr","v":"0x0e92ee80"},"kids_cap":{"t":"ptr","v":"0x0e92ee80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695020"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e92ed48"},"kids_end":{"t":"ptr","v":"0x0e92ed50"},"kids_cap":{"t":"ptr","v":"0x0e92ed50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6953c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e92eed8"},"kids_end":{"t":"ptr","v":"0x0e92eee0"},"kids_cap":{"t":"ptr","v":"0x0e92eee0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e695770"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e92ed88"},"kids_end":{"t":"ptr","v":"0x0e92ed8c"},"kids_cap":{"t":"ptr","v":"0x0e92ed8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a3a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e92ed68"},"kids_end":{"t":"ptr","v":"0x0e92ed6c"},"kids_cap":{"t":"ptr","v":"0x0e92ed6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e92ecf8"},"kids_end":{"t":"ptr","v":"0x0e92ed00"},"kids_cap":{"t":"ptr","v":"0x0e92ed00"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ee58"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e850"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e92ed08"},"kids_end":{"t":"ptr","v":"0x0e92ed10"},"kids_cap":{"t":"ptr","v":"0x0e92ed10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930858"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e92ee98"},"kids_end":{"t":"ptr","v":"0x0e92ee9c"},"kids_cap":{"t":"ptr","v":"0x0e92ee9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ff78"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e92ed18"},"kids_end":{"t":"ptr","v":"0x0e92ed1c"},"kids_cap":{"t":"ptr","v":"0x0e92ed1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049315c0"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e92ee88"},"kids_end":{"t":"ptr","v":"0x0e92ee90"},"kids_cap":{"t":"ptr","v":"0x0e92ee90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931f80"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fe30"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049206b8"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e92eea8"},"kids_end":{"t":"ptr","v":"0x0e92eeac"},"kids_cap":{"t":"ptr","v":"0x0e92eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930fa8"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920448"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e92ed28"},"kids_end":{"t":"ptr","v":"0x0e92ed2c"},"kids_cap":{"t":"ptr","v":"0x0e92ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f480"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f950"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fa98"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e92ed98"},"kids_end":{"t":"ptr","v":"0x0e92eda0"},"kids_cap":{"t":"ptr","v":"0x0e92eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931968"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049316f8"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e92eda8"},"kids_end":{"t":"ptr","v":"0x0e92edac"},"kids_cap":{"t":"ptr","v":"0x0e92edac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492dbc8"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e92f7a8"},"kids_end":{"t":"ptr","v":"0x0e92f7ac"},"kids_cap":{"t":"ptr","v":"0x0e92f7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049320b8"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fe6c8"},"kids_end":{"t":"ptr","v":"0x0e8fe6d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fcf8"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e988"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fe620"},"kids_end":{"t":"ptr","v":"0x0e8fe630"},"kids_cap":{"t":"ptr","v":"0x0e8fe630"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930ac8"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e92f6e8"},"kids_end":{"t":"ptr","v":"0x0e92f6f0"},"kids_cap":{"t":"ptr","v":"0x0e92f6f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ee68"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e92f7b8"},"kids_end":{"t":"ptr","v":"0x0e92f7c0"},"kids_cap":{"t":"ptr","v":"0x0e92f7c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931488"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e92f818"},"kids_end":{"t":"ptr","v":"0x0e92f81c"},"kids_cap":{"t":"ptr","v":"0x0e92f81c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931bd8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e92f6f8"},"kids_end":{"t":"ptr","v":"0x0e92f700"},"kids_cap":{"t":"ptr","v":"0x0e92f700"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049321f0"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e92f7d8"},"kids_end":{"t":"ptr","v":"0x0e92f7e0"},"kids_cap":{"t":"ptr","v":"0x0e92f7e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931d10"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e92f708"},"kids_end":{"t":"ptr","v":"0x0e92f710"},"kids_cap":{"t":"ptr","v":"0x0e92f710"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f960"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e92f7e8"},"kids_end":{"t":"ptr","v":"0x0e92f7ec"},"kids_cap":{"t":"ptr","v":"0x0e92f7ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d340"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e92f7f8"},"kids_end":{"t":"ptr","v":"0x0e92f7fc"},"kids_cap":{"t":"ptr","v":"0x0e92f7fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ce60"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e92f808"},"kids_end":{"t":"ptr","v":"0x0e92f810"},"kids_cap":{"t":"ptr","v":"0x0e92f810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049326d0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e92fa68"},"kids_end":{"t":"ptr","v":"0x0e92fa6c"},"kids_cap":{"t":"ptr","v":"0x0e92fa6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491e978"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fe728"},"kids_end":{"t":"ptr","v":"0x0e8fe734"},"kids_cap":{"t":"ptr","v":"0x0e8fe734"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f0d8"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e92f908"},"kids_end":{"t":"ptr","v":"0x0e92f90c"},"kids_cap":{"t":"ptr","v":"0x0e92f90c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fbc0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fd08"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ebe8"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e88d258"},"kids_end":{"t":"ptr","v":"0x0e88d26c"},"kids_cap":{"t":"ptr","v":"0x0e88d26c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e0a8"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f210"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e92faa8"},"kids_end":{"t":"ptr","v":"0x0e92faac"},"kids_cap":{"t":"ptr","v":"0x0e92faac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932460"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492eac0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e92f938"},"kids_end":{"t":"ptr","v":"0x0e92f93c"},"kids_cap":{"t":"ptr","v":"0x0e92f93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931aa0"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930c00"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e92f988"},"kids_end":{"t":"ptr","v":"0x0e92f98c"},"kids_cap":{"t":"ptr","v":"0x0e92f98c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932328"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f6e0"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f348"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e92f9f8"},"kids_end":{"t":"ptr","v":"0x0e92f9fc"},"kids_cap":{"t":"ptr","v":"0x0e92f9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930d38"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d478"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e9309f8"},"kids_end":{"t":"ptr","v":"0x0e9309fc"},"kids_cap":{"t":"ptr","v":"0x0e9309fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f338"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe740"},"kids_end":{"t":"ptr","v":"0x0e8fe750"},"kids_cap":{"t":"ptr","v":"0x0e8fe750"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ff68"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f828"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fe638"},"kids_end":{"t":"ptr","v":"0x0e8fe644"},"kids_cap":{"t":"ptr","v":"0x0e8fe644"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492fe40"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04932598"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920310"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ed20"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930458"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e930908"},"kids_end":{"t":"ptr","v":"0x0e93090c"},"kids_cap":{"t":"ptr","v":"0x0e93090c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f0c8"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e9309a8"},"kids_end":{"t":"ptr","v":"0x0e9309ac"},"kids_cap":{"t":"ptr","v":"0x0e9309ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930990"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe7e8"},"kids_end":{"t":"ptr","v":"0x0e8fe7f8"},"kids_cap":{"t":"ptr","v":"0x0e8fe7f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931830"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e9308e8"},"kids_end":{"t":"ptr","v":"0x0e9308f0"},"kids_cap":{"t":"ptr","v":"0x0e9308f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931e48"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e930968"},"kids_end":{"t":"ptr","v":"0x0e93096c"},"kids_cap":{"t":"ptr","v":"0x0e93096c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049301e8"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e930978"},"kids_end":{"t":"ptr","v":"0x0e93097c"},"kids_cap":{"t":"ptr","v":"0x0e93097c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f200"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492efa0"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fe758"},"kids_end":{"t":"ptr","v":"0x0e8fe764"},"kids_cap":{"t":"ptr","v":"0x0e8fe764"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931218"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e9308f8"},"kids_end":{"t":"ptr","v":"0x0e930900"},"kids_cap":{"t":"ptr","v":"0x0e930900"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492e1e0"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e88d0b8"},"kids_end":{"t":"ptr","v":"0x0e88d0cc"},"kids_cap":{"t":"ptr","v":"0x0e88d0cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f6f0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e930918"},"kids_end":{"t":"ptr","v":"0x0e93091c"},"kids_cap":{"t":"ptr","v":"0x0e93091c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04931350"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e930988"},"kids_end":{"t":"ptr","v":"0x0e93098c"},"kids_cap":{"t":"ptr","v":"0x0e93098c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049306c8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049310e0"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ed30"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492ebf8"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e9309d8"},"kids_end":{"t":"ptr","v":"0x0e9309dc"},"kids_cap":{"t":"ptr","v":"0x0e9309dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049300b0"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e930998"},"kids_end":{"t":"ptr","v":"0x0e93099c"},"kids_cap":{"t":"ptr","v":"0x0e93099c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492f5b8"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e9309b8"},"kids_end":{"t":"ptr","v":"0x0e9309bc"},"kids_cap":{"t":"ptr","v":"0x0e9309bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930320"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e92eb48"},"kids_end":{"t":"ptr","v":"0x0e92eb50"},"kids_cap":{"t":"ptr","v":"0x0e92eb50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04930590"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492cd28"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e88d1b8"},"kids_end":{"t":"ptr","v":"0x0e88d1cc"},"kids_cap":{"t":"ptr","v":"0x0e88d1cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491ef90"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e92ecb8"},"kids_end":{"t":"ptr","v":"0x0e92ecbc"},"kids_cap":{"t":"ptr","v":"0x0e92ecbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491f5a8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491eab0"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0491fa88"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e92eb68"},"kids_end":{"t":"ptr","v":"0x0e92eb6c"},"kids_cap":{"t":"ptr","v":"0x0e92eb6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049201d8"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492da90"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e92ebd8"},"kids_end":{"t":"ptr","v":"0x0e92ebdc"},"kids_cap":{"t":"ptr","v":"0x0e92ebdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492df70"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e92eb18"},"kids_end":{"t":"ptr","v":"0x0e92eb20"},"kids_cap":{"t":"ptr","v":"0x0e92eb20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04920580"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e92eb78"},"kids_end":{"t":"ptr","v":"0x0e92eb80"},"kids_cap":{"t":"ptr","v":"0x0e92eb80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0492d5b0"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e92ec98"},"kids_end":{"t":"ptr","v":"0x0e92eca0"},"kids_cap":{"t":"ptr","v":"0x0e92eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a34b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e92eb58"},"kids_end":{"t":"ptr","v":"0x0e92eb5c"},"kids_cap":{"t":"ptr","v":"0x0e92eb5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696058"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6984e8"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6999a0"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69d520"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6962c8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696400"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698fe0"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6989c8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6995f8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e92eca8"},"kids_end":{"t":"ptr","v":"0x0e92ecac"},"kids_cap":{"t":"ptr","v":"0x0e92ecac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6967a8"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe5c0"},"kids_end":{"t":"ptr","v":"0x0e8fe5cc"},"kids_cap":{"t":"ptr","v":"0x0e8fe5cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696190"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fe800"},"kids_end":{"t":"ptr","v":"0x0e8fe80c"},"kids_cap":{"t":"ptr","v":"0x0e8fe80c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698c38"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe770"},"kids_end":{"t":"ptr","v":"0x0e8fe77c"},"kids_cap":{"t":"ptr","v":"0x0e8fe77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6994c0"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fe7a0"},"kids_end":{"t":"ptr","v":"0x0e8fe7ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe7ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696670"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe818"},"kids_end":{"t":"ptr","v":"0x0e8fe824"},"kids_cap":{"t":"ptr","v":"0x0e8fe824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697ed0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697780"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699250"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69e630"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04a512f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e88d1f8"},"kids_end":{"t":"ptr","v":"0x0e88d210"},"kids_cap":{"t":"ptr","v":"0x0e88d210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697c60"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e92ec28"},"kids_end":{"t":"ptr","v":"0x0e92ec30"},"kids_cap":{"t":"ptr","v":"0x0e92ec30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6983b0"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e92ec68"},"kids_end":{"t":"ptr","v":"0x0e92ec70"},"kids_cap":{"t":"ptr","v":"0x0e92ec70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698ea8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e92eba8"},"kids_end":{"t":"ptr","v":"0x0e92ebb0"},"kids_cap":{"t":"ptr","v":"0x0e92ebb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e69da00"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e92ec18"},"kids_end":{"t":"ptr","v":"0x0e92ec20"},"kids_cap":{"t":"ptr","v":"0x0e92ec20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6972a0"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699ad8"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698278"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696a18"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699118"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699868"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697030"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e697510"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e92eae8"},"kids_end":{"t":"ptr","v":"0x0e92eaec"},"kids_cap":{"t":"ptr","v":"0x0e92eaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6979f0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e92ec58"},"kids_end":{"t":"ptr","v":"0x0e92ec5c"},"kids_cap":{"t":"ptr","v":"0x0e92ec5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6968e0"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e92ec08"},"kids_end":{"t":"ptr","v":"0x0e92ec0c"},"kids_cap":{"t":"ptr","v":"0x0e92ec0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696538"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e92ecc8"},"kids_end":{"t":"ptr","v":"0x0e92eccc"},"kids_cap":{"t":"ptr","v":"0x0e92eccc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698890"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e92ecd8"},"kids_end":{"t":"ptr","v":"0x0e92ecdc"},"kids_cap":{"t":"ptr","v":"0x0e92ecdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e698d70"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e92eb88"},"kids_end":{"t":"ptr","v":"0x0e92eb8c"},"kids_cap":{"t":"ptr","v":"0x0e92eb8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699388"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e92ebb8"},"kids_end":{"t":"ptr","v":"0x0e92ebbc"},"kids_cap":{"t":"ptr","v":"0x0e92ebbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699730"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e92eaf8"},"kids_end":{"t":"ptr","v":"0x0e92eafc"},"kids_cap":{"t":"ptr","v":"0x0e92eafc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e696ef8"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e92eb98"},"kids_end":{"t":"ptr","v":"0x0e92eb9c"},"kids_cap":{"t":"ptr","v":"0x0e92eb9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6973d8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e92ebe8"},"kids_end":{"t":"ptr","v":"0x0e92ebec"},"kids_cap":{"t":"ptr","v":"0x0e92ebec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e699d48"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e92eb08"},"kids_end":{"t":"ptr","v":"0x0e92eb0c"},"kids_cap":{"t":"ptr","v":"0x0e92eb0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["player","tree_header"],"undeclared":[],"n":0}} diff --git a/verify/traces/recap-golden-trace.jsonl.gz b/verify/traces/recap-golden-trace.jsonl.gz new file mode 100644 index 0000000000000000000000000000000000000000..4bf1b8f196d0c12f1048813c8f9f455793ed5b21 GIT binary patch literal 159900 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 aZ0}TbP) WeaponDef::ParseScript registers each weapon's name with the string table and resolves `requires` against the live TechTree","risk":"high","why":"per-file parsing is M3 scope; ours delegates to the game's own LoadWeapon, so a compare run performs the registration a SECOND time and neither the string table nor the tech tree is a declared region","mitigation":"suspected cause of the sibling section hook's compare crash (docs/M2.md)"},{"what":"allocates 123 WeaponDef objects (0x278 bytes each) on the game heap","risk":"low","why":"the definitions do not exist when the hook is entered, so they cannot be a before-snapshot; the dictionary region compares them by id/name/path","mitigation":""},{"what":"the word at dictionary+0x14","risk":"low","why":"not modelled; emitted as an opaque pointer, which the default policy ignores -- a change is visible in a trace but never a divergence","mitigation":"guard:dict"},{"what":"writes lines to the game log for a missing manifest","risk":"low","why":"log text is not simulation state","mitigation":""},{"what":"std::sort tie order for equal weapon names","risk":"low","why":"msvc_sort.h replays MSVC 2010's introsort, but the shipped data has no tied names, so the tie rule is unexercised rather than verified","mitigation":""}]}},"Game::SectionDictionary::SectionDictionary":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"LoadSection registers each section with the string table and the live TechTree, and may append to the dictionary's own vector","risk":"high","why":"M3 scope; ours delegates to the game's LoadSection after the original has already built all 885 definitions, so the second pass registers duplicates -- the leading hypothesis for this hook's compare-mode crash","mitigation":"see docs/M2.md; compare mode for this hook is not safe to run"},{"what":"post-load validation pass over every definition's @-token against the string table","risk":"medium","why":"runs after the loop and touches no declared region","mitigation":""},{"what":"allocates 885 SectionDef objects (0x3d8 bytes each) on the game heap","risk":"low","why":"they do not exist at hook entry; compared by index/species/id/token","mitigation":""},{"what":"the word at dictionary+0x14","risk":"low","why":"not modelled; emitted as an ignored pointer","mitigation":"guard:dict"},{"what":"the before-snapshot of the object is uninitialised heap","risk":"medium","why":"the hook is on the constructor, so `before` is meaningless and only `after` carries information","mitigation":""}]}},"Game::TechTree::ProcessResearch":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"posts EVENT_RESEARCH_OVERBUDGET on the owner's EventStorage in the same branch that sets node.flag = 2","risk":"high","why":"the message text is composed from the tech name, so ours cannot synthesise it; it would have to be posted through the game's own event API. This is the defect that made a clean compare false: replace mode's autosave differed from the oracle by exactly this one event","mitigation":"region:events (EvNxID now diverges instead of passing silently)"},{"what":"posts EVENT_TECHS_UNLOCKED for nodes that became available this turn","risk":"medium","why":"the trailing unlock loop makes no draw and writes no node, but it does build a names list and post an event","mitigation":"region:events"},{"what":"TechTree::SetResearched on completion: the turn/order stamps, the child unlock cascade, the recursive research of zero-cost children, and the owner's OnTechResearched callback","risk":"high","why":"its own milestone (B2); the callback writes live player state that compare mode must not touch, and it consumes one extra RNG word","mitigation":"guard:player, guard:tree_header"},{"what":"bumps the tree's completion-order counter (TechTree+0x20)","risk":"medium","why":"part of SetResearched; the per-node `order` word is compared but the counter it comes from was not a region","mitigation":"guard:tree_header"},{"what":"writes a completion line to the game log","risk":"low","why":"log text is not simulation state","mitigation":""}]}},"Game::ServerPlayer::OnTechResearched":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"posts EVENT_RESEARCH_COMPLETE / _UNDERBUDGET / _TEMPERANCE on the owner's EventStorage when !silent","risk":"high","why":"the same class of write as B3's defect, and this hook has no replace-mode oracle that could catch it: gotcha 4 in docs/B2.md says a changed save hash on a completion turn is expected and therefore not a finding","mitigation":"guard:player (EventStorage is inline at ServerPlayer+0x29c)"},{"what":"writes every owned system's AI flag (CCC_AIVrus / CCC_AISlv), re-evaluates the arcology civilian cap, cures addiction and clears plague across systems AND ships","risk":"high","why":"writes through pointers to other objects; compare mode must not touch live state, and no region reaches them","mitigation":""},{"what":"the pending plague-cure roll (ServerPlayer::RollResearchEvent)","risk":"high","why":"it draws exactly one word from the strategic generator unconditionally; running it in compare mode would consume real randomness. The two words it guards are still cleared and the record says whether it would have fired","mitigation":"this is the extra draw B3 observed on a completion"},{"what":"TechTree::SetResearched for the Zuul boarding-pod grant","risk":"medium","why":"it would mutate the live tree, and it recurses","mitigation":""},{"what":"allocates or frees the node-bore block at ServerPlayer+0x308","risk":"medium","why":"ours has no allocator the game's runtime could free, so replace mode calls the game's own updater -- which means replace mode never exercises our node-bore selection at all","mitigation":"region:node_bore, declared only when the block already exists"}]}},"Game::ServerSystem::ProcessTurn":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"the addiction sweep raises MoraleEvents, which are constructed and appended to the system's capped morale history","risk":"high","why":"the same class of write as B3's defect. sim::ProcessColonyTurn does compute the morale events (ColonyTurnResult), but the hook never emits them: DescribeMoraleEvents is dead code, so they are neither compared nor logged","mitigation":"guard:system"},{"what":"every callee: the plague pass, imperial and civilian growth, the resource debit, in-orbit refuel, slaves, rebellion and the build queue","risk":"high","why":"declared input boundary -- ProcessTurn is a dispatcher and only the words it writes itself are modelled. The callees raise EVENT_SLAVES_DEAD, EVENT_SYSTEM_REBELLION_CONTINUES, the plague events and SEBuildCompleted, create ships and bump per-player ShipRecords counters","mitigation":"guard:system covers the system object only, not the other objects"},{"what":"ApplyInfraBonus / ApplyPopBonus read the owner's home-system id, and the build queue writes the owning ServerPlayer","risk":"medium","why":"writes through a pointer to another object; no region reaches the player","mitigation":""},{"what":"ProcessRebellion is the pass's only RNG consumer and its draw count is data-dependent","risk":"low","why":"the generator IS a declared region, so a moved post-state is visible and names the system whose rebellion fired -- it is reported, not modelled","mitigation":""},{"what":"replace mode is refused for this hook","risk":"medium","why":"our side models the dispatcher's own writes and none of the callees, so a replace run would silently skip a colony's whole turn. There is therefore no oracle layer behind the compare for this hook","mitigation":""}]}},"Game::StrategyServer::MoveFleet":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"on arrival: dispatches SEFleetArrived and runs one of three arrival handlers by destination kind (enter system / join fleet / stop at point)","risk":"high","why":"declared input boundary -- an arriving call is expected to differ in all of it, and none of it is declared, so the compare says nothing about arrivals","mitigation":"guard:fleet sees the fleet's own words; the event and the system do not"},{"what":"on departure: cancels every still-acting ship (with a log line each) and calls ServerSystem::FleetDeparts, which rewrites the system's ownership bits","risk":"high","why":"writes through pointers to ships and to the system","mitigation":""},{"what":"the tanker top-up refuels other ships in the fleet","risk":"medium","why":"the per-ship range regions would show it, but ours does not model it, so a fleet with a tanker diverges for a known reason","mitigation":""},{"what":"a node-line waypoint's step comes from the stutter profile","risk":"medium","why":"NodeLineStep / BuildStutterSegments are written and unit-tested but not wired in; the hook steps every waypoint type as speed x dt, so a node-line leg is knowingly mis-stepped and only its type is recorded","mitigation":"declared gap: docs/B4.md"},{"what":"a missed probabilistic jump scatters the fleet in a random direction","risk":"medium","why":"the direction is a second draw whose mapping is not modelled; ours leaves the position alone and reports the scatter distance, so the generator region diverges by one word on a miss","mitigation":""},{"what":"the route revalidation and the waypoint list itself","risk":"medium","why":"declared input boundary; the waypoint vector is not a region","mitigation":""}]}},"Game::StrategyServer::ProcessFleetMovement":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"`ours` re-reads the LIVE fleet list after the original has run","risk":"high","why":"the gate-traffic total is computed by the original at the very end of the pass, so a pre-call snapshot would diverge for the wrong reason. It breaks the compare invariant that ours never touches live memory, and it makes this hook's verdict partly self-fulfilling: the input to our arithmetic is the original's own post-move state","mitigation":""},{"what":"drives MoveFleet up to five times per fleet","risk":"high","why":"every undeclared effect of MoveFleet happens inside this call too; the pass schedule is recorded in the arguments but never compared","mitigation":""},{"what":"writes FPdpos into every fleet and clears flags 0x2 and 0x100 on every fleet","risk":"high","why":"no region covers the fleets, only the players' gate-traffic words","mitigation":""},{"what":"OnFleetArrived posts EVENT_FLEET_ARRIVED","risk":"high","why":"the same class of write as B3's defect, and there is no replace mode for this hook, so nothing behind the compare could catch it either","mitigation":""},{"what":"the original accumulates by player->index but writes back by the player's position in the server vector, into a fixed 32-int array with no bounds check","risk":"medium","why":"a real latent bug in the original that our side reproduces only while index == position; the reference save never separates them","mitigation":""},{"what":"PassSchedule() is never called by the hook, and FleetSummary::targetFleetId / relation are never filled","risk":"medium","why":"the header claims ours predicts the call order for a trace to check; that prediction is not actually emitted","mitigation":""}]}}}}} +{"ts":256133112,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":0,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x0e945738","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":912,"n":"fleet_id"},{"t":"i32","v":7,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[1].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[2].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[3].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[4].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[5].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[6].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[7].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[8].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[9].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[1].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[2].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[3].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[4].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[5].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[6].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[7].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[8].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[9].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}} +{"ts":256133986,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":1,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x0e945860","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1120,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}} +{"ts":256134240,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":2,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x209113e8","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1152,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}} +{"ts":256134492,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":3,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x209119b0","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1264,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}} +{"ts":256134793,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":4,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x20911ad8","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1296,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}} +{"ts":256134983,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":5,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x20911510","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1360,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}} +{"ts":256135855,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":6,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x357c7648","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":34,"n":"fleet_id"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":1,"n":"wpt_type"},{"t":"i32","v":1,"n":"wpt_count"},{"t":"i32","v":0,"n":"dest_kind"},{"t":"f32","v":2,"n":"speed"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.5634995},"y":{"t":"f32","v":5.97172451},"z":{"t":"f32","v":1.56473362}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":20}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":18}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.5634995},"y":{"t":"f32","v":5.97172451},"z":{"t":"f32","v":1.56473362}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":18}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[{"region":"fleet","off":160,"len":4},{"region":"fleet","off":220,"len":1},{"region":"fleet","off":268,"len":1}],"n":3}} +{"ts":256138052,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":7,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9c0ad8","n":"system"},{"t":"i32","v":0,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":0},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":5.65746593},"res":{"t":"i32","v":4526},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":0},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":5.65746593},"res":{"t":"i32","v":4526},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":0},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":5.65746593},"res":{"t":"i32","v":4526},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":256138547,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":8,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9c0db8","n":"system"},{"t":"i32","v":1,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":65536}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":1},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":65536},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.65671718},"res":{"t":"i32","v":4295},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":1},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":65536},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.65671718},"res":{"t":"i32","v":4295},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":1},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":65536},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.65671718},"res":{"t":"i32","v":4295},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":256138974,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":9,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9c1098","n":"system"},{"t":"i32","v":2,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":2},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":4.85715199},"res":{"t":"i32","v":6454},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":2},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":4.85715199},"res":{"t":"i32","v":6454},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":2},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":4.85715199},"res":{"t":"i32","v":6454},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":256139443,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":10,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ac258","n":"system"},{"t":"i32","v":3,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":3},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":17.2924309},"res":{"t":"i32","v":3323},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":3},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":17.2924309},"res":{"t":"i32","v":3323},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":3},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":17.2924309},"res":{"t":"i32","v":3323},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":256139927,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":11,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ac538","n":"system"},{"t":"i32","v":4,"n":"system_index"},{"t":"i32","v":0,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":2}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":4},"owner":{"t":"i32","v":0},"species":{"t":"i32","v":0},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":1},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":11.1062069},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":4},"owner":{"t":"i32","v":0},"species":{"t":"i32","v":0},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":1},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":11.1062069},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":2}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":4},"owner":{"t":"i32","v":0},"species":{"t":"i32","v":0},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":1},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":11.1062069},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[{"region":"system","off":420,"len":12}],"n":1}} +{"ts":256140321,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":12,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ac818","n":"system"},{"t":"i32","v":5,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":5},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":8.92636013},"res":{"t":"i32","v":6439},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":5},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":8.92636013},"res":{"t":"i32","v":6439},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":5},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":8.92636013},"res":{"t":"i32","v":6439},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":256140722,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":13,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9acaf8","n":"system"},{"t":"i32","v":6,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":6},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":0.869569659},"res":{"t":"i32","v":3455},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":6},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":0.869569659},"res":{"t":"i32","v":3455},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":6},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":0.869569659},"res":{"t":"i32","v":3455},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":256141097,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":14,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9acdd8","n":"system"},{"t":"i32","v":7,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":7},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":8},"suit":{"t":"f32","v":2.1625092},"res":{"t":"i32","v":5343},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":7},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":8},"suit":{"t":"f32","v":2.1625092},"res":{"t":"i32","v":5343},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":7},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":8},"suit":{"t":"f32","v":2.1625092},"res":{"t":"i32","v":5343},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":256141460,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":15,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ad0b8","n":"system"},{"t":"i32","v":8,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":8},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":12.5012217},"res":{"t":"i32","v":7719},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":8},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":12.5012217},"res":{"t":"i32","v":7719},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":8},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":12.5012217},"res":{"t":"i32","v":7719},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":256141944,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":16,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ad398","n":"system"},{"t":"i32","v":9,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":9},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":5.32649183},"res":{"t":"i32","v":5752},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":9},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":5.32649183},"res":{"t":"i32","v":5752},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":9},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":5.32649183},"res":{"t":"i32","v":5752},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":256142329,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":17,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ad678","n":"system"},{"t":"i32","v":10,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":10},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":14.9623423},"res":{"t":"i32","v":7881},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":10},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":14.9623423},"res":{"t":"i32","v":7881},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":10},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":14.9623423},"res":{"t":"i32","v":7881},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":256142792,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":18,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20906c70","n":"system"},{"t":"i32","v":11,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":11},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":13.7235212},"res":{"t":"i32","v":4395},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":11},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":13.7235212},"res":{"t":"i32","v":4395},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":11},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":13.7235212},"res":{"t":"i32","v":4395},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":256143226,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":19,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20906f50","n":"system"},{"t":"i32","v":12,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":12},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":16.9405556},"res":{"t":"i32","v":3973},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":12},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":16.9405556},"res":{"t":"i32","v":3973},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":12},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":16.9405556},"res":{"t":"i32","v":3973},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":256143655,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":20,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907230","n":"system"},{"t":"i32","v":13,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":13},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":0.416553319},"res":{"t":"i32","v":5889},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":13},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":0.416553319},"res":{"t":"i32","v":5889},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":13},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":0.416553319},"res":{"t":"i32","v":5889},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":256144075,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":21,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907510","n":"system"},{"t":"i32","v":14,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":14},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.5084848},"res":{"t":"i32","v":4976},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":14},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.5084848},"res":{"t":"i32","v":4976},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":14},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.5084848},"res":{"t":"i32","v":4976},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":256144652,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":22,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x209077f0","n":"system"},{"t":"i32","v":15,"n":"system_index"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":2}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":15},"owner":{"t":"i32","v":1},"species":{"t":"i32","v":2},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":1},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":15},"owner":{"t":"i32","v":1},"species":{"t":"i32","v":2},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":1},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":2}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":15},"owner":{"t":"i32","v":1},"species":{"t":"i32","v":2},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":1},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[{"region":"system","off":216,"len":1},{"region":"system","off":368,"len":1},{"region":"system","off":420,"len":12},{"region":"system","off":568,"len":4}],"n":4}} +{"ts":256145183,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":23,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907ad0","n":"system"},{"t":"i32","v":16,"n":"system_index"},{"t":"i32","v":7,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":2}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":268435456}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":128}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":128}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":16},"owner":{"t":"i32","v":7},"species":{"t":"i32","v":4},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":true},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":120000000},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":1},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":268435456},"rcex_mask":{"t":"u32","v":128},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":3394},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":16},"owner":{"t":"i32","v":7},"species":{"t":"i32","v":4},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":true},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":120000000},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":1},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":268435456},"rcex_mask":{"t":"u32","v":128},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":3394},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":2}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":128}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":16},"owner":{"t":"i32","v":7},"species":{"t":"i32","v":4},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":true},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":120000000},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":1},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":268435456},"rcex_mask":{"t":"u32","v":128},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":3394},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[{"region":"system","off":420,"len":12}],"n":1}} +{"ts":256145624,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":24,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20909518","n":"system"},{"t":"i32","v":17,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":17},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":9.509552},"res":{"t":"i32","v":4085},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":17},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":9.509552},"res":{"t":"i32","v":4085},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":17},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":9.509552},"res":{"t":"i32","v":4085},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":256146047,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":25,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908978","n":"system"},{"t":"i32","v":18,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":65536}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":18},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":65536},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":14.0226393},"res":{"t":"i32","v":5476},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":18},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":65536},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":14.0226393},"res":{"t":"i32","v":5476},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":18},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":65536},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":14.0226393},"res":{"t":"i32","v":5476},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":256146472,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":26,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20909800","n":"system"},{"t":"i32","v":19,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":19},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.6182585},"res":{"t":"i32","v":3690},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":19},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.6182585},"res":{"t":"i32","v":3690},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":19},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.6182585},"res":{"t":"i32","v":3690},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":256146924,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":27,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907dd8","n":"system"},{"t":"i32","v":20,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":20},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":11.8586617},"res":{"t":"i32","v":7258},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":20},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":11.8586617},"res":{"t":"i32","v":7258},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":20},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":11.8586617},"res":{"t":"i32","v":7258},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":256147440,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":28,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x209080c0","n":"system"},{"t":"i32","v":21,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":21},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":1},"suit":{"t":"f32","v":0.868489087},"res":{"t":"i32","v":5445},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":21},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":1},"suit":{"t":"f32","v":0.868489087},"res":{"t":"i32","v":5445},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":21},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":1},"suit":{"t":"f32","v":0.868489087},"res":{"t":"i32","v":5445},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":256147890,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":29,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x209083a8","n":"system"},{"t":"i32","v":22,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":65536}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":22},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":65536},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":19.3835239},"res":{"t":"i32","v":7259},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":22},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":65536},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":19.3835239},"res":{"t":"i32","v":7259},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":22},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":65536},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":19.3835239},"res":{"t":"i32","v":7259},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":256148310,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":30,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20909230","n":"system"},{"t":"i32","v":23,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":23},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":19.8140602},"res":{"t":"i32","v":5610},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":23},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":19.8140602},"res":{"t":"i32","v":5610},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":23},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":19.8140602},"res":{"t":"i32","v":5610},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":256148768,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":31,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908690","n":"system"},{"t":"i32","v":24,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":24},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":12.9136686},"res":{"t":"i32","v":6368},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":24},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":12.9136686},"res":{"t":"i32","v":6368},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":24},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":12.9136686},"res":{"t":"i32","v":6368},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":256149188,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":32,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908c60","n":"system"},{"t":"i32","v":25,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":65536}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":25},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":65536},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.58767724},"res":{"t":"i32","v":5058},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":25},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":65536},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.58767724},"res":{"t":"i32","v":5058},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":25},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":65536},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.58767724},"res":{"t":"i32","v":5058},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":256149622,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":33,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908f48","n":"system"},{"t":"i32","v":26,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":26},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":5.11237812},"res":{"t":"i32","v":6252},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":26},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":5.11237812},"res":{"t":"i32","v":6252},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":26},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":5.11237812},"res":{"t":"i32","v":6252},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":256150039,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":34,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x2090e3b0","n":"system"},{"t":"i32","v":27,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":432,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":65536}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":27},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":65536},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":7.83555746},"res":{"t":"i32","v":5210},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":27},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":65536},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":7.83555746},"res":{"t":"i32","v":5210},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":432},"next_index":{"t":"i64","v":192}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":27},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":3},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":65536},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":7.83555746},"res":{"t":"i32","v":5210},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":432},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":335305171,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":35,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x0e945738","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":912,"n":"fleet_id"},{"t":"i32","v":7,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[1].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[2].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[3].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[4].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[5].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[6].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[7].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[8].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[9].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[1].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[2].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[3].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[4].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[5].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[6].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[7].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[8].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[9].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}} +{"ts":335305484,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":36,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x0e945860","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1120,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}} +{"ts":335305777,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":37,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x209113e8","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1152,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}} +{"ts":335305973,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":38,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x209119b0","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1264,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}} +{"ts":335306158,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":39,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x20911ad8","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1296,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}} +{"ts":335306340,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":40,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x20911510","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1360,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}} +{"ts":335306553,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":41,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x357c7648","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":34,"n":"fleet_id"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":1,"n":"wpt_type"},{"t":"i32","v":1,"n":"wpt_count"},{"t":"i32","v":0,"n":"dest_kind"},{"t":"f32","v":2,"n":"speed"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-10.5634995},"y":{"t":"f32","v":5.97172451},"z":{"t":"f32","v":1.56473362}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-9.19839668},"y":{"t":"f32","v":7.22444439},"z":{"t":"f32","v":0.811615944}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.5634995},"y":{"t":"f32","v":5.97172451},"z":{"t":"f32","v":1.56473362}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":18}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":16}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-9.19839668},"y":{"t":"f32","v":7.22444439},"z":{"t":"f32","v":0.811615944}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.5634995},"y":{"t":"f32","v":5.97172451},"z":{"t":"f32","v":1.56473362}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":16}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[{"region":"fleet","off":220,"len":1},{"region":"fleet","off":268,"len":1}],"n":2}} +{"ts":335306781,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":42,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x357c62a0","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":50,"n":"fleet_id"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":1,"n":"wpt_type"},{"t":"i32","v":1,"n":"wpt_count"},{"t":"i32","v":0,"n":"dest_kind"},{"t":"f32","v":2,"n":"speed"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.9839945},"y":{"t":"f32","v":3.1515913},"z":{"t":"f32","v":3.12465525}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":20}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":18}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.9839945},"y":{"t":"f32","v":3.15159106},"z":{"t":"f32","v":3.12465525}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":18}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413}}}}}},"diverged":true,"diff":[{"path":"side.pos.after.v.y","why":"exact","orig":{"t":"f32","v":3.1515913},"ours":{"t":"f32","v":3.15159106}}],"coverage":{"guards":["fleet"],"undeclared":[{"region":"fleet","off":160,"len":4},{"region":"fleet","off":220,"len":1},{"region":"fleet","off":268,"len":1}],"n":3}} +{"ts":335307229,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":43,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9c0ad8","n":"system"},{"t":"i32","v":0,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":0},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":5.65746593},"res":{"t":"i32","v":4526},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":0},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":5.65746593},"res":{"t":"i32","v":4526},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":0},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":5.65746593},"res":{"t":"i32","v":4526},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":335307673,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":44,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9c0db8","n":"system"},{"t":"i32","v":1,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":1},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.65671718},"res":{"t":"i32","v":4295},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":1},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.65671718},"res":{"t":"i32","v":4295},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":1},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.65671718},"res":{"t":"i32","v":4295},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":335308052,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":45,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9c1098","n":"system"},{"t":"i32","v":2,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":2},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":4.85715199},"res":{"t":"i32","v":6454},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":2},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":4.85715199},"res":{"t":"i32","v":6454},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":2},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":4.85715199},"res":{"t":"i32","v":6454},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":335308428,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":46,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ac258","n":"system"},{"t":"i32","v":3,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":3},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":17.2924309},"res":{"t":"i32","v":3323},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":3},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":17.2924309},"res":{"t":"i32","v":3323},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":3},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":17.2924309},"res":{"t":"i32","v":3323},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":335308886,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":47,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ac538","n":"system"},{"t":"i32","v":4,"n":"system_index"},{"t":"i32","v":0,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":2}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":3}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":4},"owner":{"t":"i32","v":0},"species":{"t":"i32","v":0},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":2},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":11.1062069},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":4},"owner":{"t":"i32","v":0},"species":{"t":"i32","v":0},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":2},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":11.1062069},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":3}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":4},"owner":{"t":"i32","v":0},"species":{"t":"i32","v":0},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":2},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":11.1062069},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":335309334,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":48,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ac818","n":"system"},{"t":"i32","v":5,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":5},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":8.92636013},"res":{"t":"i32","v":6439},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":5},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":8.92636013},"res":{"t":"i32","v":6439},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":5},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":8.92636013},"res":{"t":"i32","v":6439},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":335309707,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":49,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9acaf8","n":"system"},{"t":"i32","v":6,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":6},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":0.869569659},"res":{"t":"i32","v":3455},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":6},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":0.869569659},"res":{"t":"i32","v":3455},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":6},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":0.869569659},"res":{"t":"i32","v":3455},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":335310173,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":50,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9acdd8","n":"system"},{"t":"i32","v":7,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":7},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":8},"suit":{"t":"f32","v":2.1625092},"res":{"t":"i32","v":5343},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":7},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":8},"suit":{"t":"f32","v":2.1625092},"res":{"t":"i32","v":5343},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":7},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":8},"suit":{"t":"f32","v":2.1625092},"res":{"t":"i32","v":5343},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":335310562,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":51,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ad0b8","n":"system"},{"t":"i32","v":8,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":8},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":12.5012217},"res":{"t":"i32","v":7719},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":8},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":12.5012217},"res":{"t":"i32","v":7719},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":8},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":12.5012217},"res":{"t":"i32","v":7719},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":335310959,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":52,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ad398","n":"system"},{"t":"i32","v":9,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":9},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":5.32649183},"res":{"t":"i32","v":5752},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":9},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":5.32649183},"res":{"t":"i32","v":5752},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":9},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":5.32649183},"res":{"t":"i32","v":5752},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":335311330,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":53,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ad678","n":"system"},{"t":"i32","v":10,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":10},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":14.9623423},"res":{"t":"i32","v":7881},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":10},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":14.9623423},"res":{"t":"i32","v":7881},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":10},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":14.9623423},"res":{"t":"i32","v":7881},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":335311772,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":54,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20906c70","n":"system"},{"t":"i32","v":11,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":11},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":13.7235212},"res":{"t":"i32","v":4395},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":11},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":13.7235212},"res":{"t":"i32","v":4395},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":11},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":13.7235212},"res":{"t":"i32","v":4395},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":335312194,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":55,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20906f50","n":"system"},{"t":"i32","v":12,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":12},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":16.9405556},"res":{"t":"i32","v":3973},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":12},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":16.9405556},"res":{"t":"i32","v":3973},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":12},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":16.9405556},"res":{"t":"i32","v":3973},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":335312635,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":56,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907230","n":"system"},{"t":"i32","v":13,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":13},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":0.416553319},"res":{"t":"i32","v":5889},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":13},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":0.416553319},"res":{"t":"i32","v":5889},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":13},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":0.416553319},"res":{"t":"i32","v":5889},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":335313058,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":57,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907510","n":"system"},{"t":"i32","v":14,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":14},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.5084848},"res":{"t":"i32","v":4976},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":14},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.5084848},"res":{"t":"i32","v":4976},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":14},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.5084848},"res":{"t":"i32","v":4976},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":335313676,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":58,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x209077f0","n":"system"},{"t":"i32","v":15,"n":"system_index"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":2}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":3}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":15},"owner":{"t":"i32","v":1},"species":{"t":"i32","v":2},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":2},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":15},"owner":{"t":"i32","v":1},"species":{"t":"i32","v":2},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":2},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":3}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":15},"owner":{"t":"i32","v":1},"species":{"t":"i32","v":2},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":2},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[{"region":"system","off":216,"len":1},{"region":"system","off":368,"len":1},{"region":"system","off":568,"len":4}],"n":3}} +{"ts":335314160,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":59,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907ad0","n":"system"},{"t":"i32","v":16,"n":"system_index"},{"t":"i32","v":7,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":2}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":3}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":128}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":128}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":16},"owner":{"t":"i32","v":7},"species":{"t":"i32","v":4},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":true},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":120000000},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":2},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":128},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":3394},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":16},"owner":{"t":"i32","v":7},"species":{"t":"i32","v":4},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":true},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":120000000},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":2},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":128},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":3394},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":3}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":128}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":16},"owner":{"t":"i32","v":7},"species":{"t":"i32","v":4},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":true},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":120000000},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":2},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":128},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":3394},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":335314602,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":60,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20909518","n":"system"},{"t":"i32","v":17,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":17},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":9.509552},"res":{"t":"i32","v":4085},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":17},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":9.509552},"res":{"t":"i32","v":4085},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":17},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":9.509552},"res":{"t":"i32","v":4085},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":335315053,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":61,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908978","n":"system"},{"t":"i32","v":18,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":18},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":14.0226393},"res":{"t":"i32","v":5476},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":18},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":14.0226393},"res":{"t":"i32","v":5476},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":18},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":14.0226393},"res":{"t":"i32","v":5476},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":335315479,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":62,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20909800","n":"system"},{"t":"i32","v":19,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":19},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.6182585},"res":{"t":"i32","v":3690},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":19},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.6182585},"res":{"t":"i32","v":3690},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":19},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.6182585},"res":{"t":"i32","v":3690},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":335315915,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":63,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907dd8","n":"system"},{"t":"i32","v":20,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":20},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":11.8586617},"res":{"t":"i32","v":7258},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":20},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":11.8586617},"res":{"t":"i32","v":7258},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":20},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":11.8586617},"res":{"t":"i32","v":7258},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":335316334,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":64,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x209080c0","n":"system"},{"t":"i32","v":21,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":21},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":1},"suit":{"t":"f32","v":0.868489087},"res":{"t":"i32","v":5445},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":21},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":1},"suit":{"t":"f32","v":0.868489087},"res":{"t":"i32","v":5445},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":21},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":1},"suit":{"t":"f32","v":0.868489087},"res":{"t":"i32","v":5445},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":335316772,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":65,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x209083a8","n":"system"},{"t":"i32","v":22,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":22},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":19.3835239},"res":{"t":"i32","v":7259},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":22},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":19.3835239},"res":{"t":"i32","v":7259},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":22},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":19.3835239},"res":{"t":"i32","v":7259},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":335317256,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":66,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20909230","n":"system"},{"t":"i32","v":23,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":23},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":19.8140602},"res":{"t":"i32","v":5610},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":23},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":19.8140602},"res":{"t":"i32","v":5610},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":23},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":19.8140602},"res":{"t":"i32","v":5610},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":335317693,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":67,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908690","n":"system"},{"t":"i32","v":24,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":24},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":12.9136686},"res":{"t":"i32","v":6368},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":24},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":12.9136686},"res":{"t":"i32","v":6368},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":24},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":12.9136686},"res":{"t":"i32","v":6368},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":335318115,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":68,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908c60","n":"system"},{"t":"i32","v":25,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":25},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.58767724},"res":{"t":"i32","v":5058},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":25},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.58767724},"res":{"t":"i32","v":5058},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":25},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.58767724},"res":{"t":"i32","v":5058},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":335318541,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":69,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908f48","n":"system"},{"t":"i32","v":26,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":26},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":5.11237812},"res":{"t":"i32","v":6252},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":26},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":5.11237812},"res":{"t":"i32","v":6252},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":26},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":5.11237812},"res":{"t":"i32","v":6252},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":335318958,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":70,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x2090e3b0","n":"system"},{"t":"i32","v":27,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":413,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":27},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":7.83555746},"res":{"t":"i32","v":5210},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":27},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":7.83555746},"res":{"t":"i32","v":5210},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":27},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":4},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":7.83555746},"res":{"t":"i32","v":5210},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":413},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":335320579,"hook":"Game::ServerPlayer::OnTechResearched","mode":"compare","call_id":71,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e955420","n":"player"},{"t":"i32","v":1,"n":"player_index"},{"t":"i32","v":2,"n":"species"},{"t":"ptr","v":"0x04ab12f8","n":"def"},{"t":"i32","v":10001,"n":"tech_id"},{"t":"i32","v":144,"n":"def_node_index"},{"t":"str","v":"IND_Waldo","n":"tech_name"},{"t":"bool","v":false,"n":"silent"},{"t":"bool","v":true,"n":"is_current_target"},{"t":"i32","v":4,"n":"owned_systems_bytes"},{"t":"bool","v":false,"n":"rebel_ai"},{"t":"bool","v":true,"n":"ai_benefit_in"},{"t":"i32","v":3,"n":"gate_traffic_tpgate"},{"t":"i32","v":6,"n":"gate_traffic_gatamp"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"suit":{"before":{"t":"struct","v":{"suit_tol":{"t":"f32","v":6.25},"max_overharvest":{"t":"f32","v":0.0199999996}}},"after":{"t":"struct","v":{"suit_tol":{"t":"f32","v":6.25},"max_overharvest":{"t":"f32","v":0.0199999996}}}},"res_mod":{"before":{"t":"struct","v":{"res_mod":{"t":"f32","v":0.899999976}}},"after":{"t":"struct","v":{"res_mod":{"t":"f32","v":0.899999976}}}},"abilities":{"before":{"t":"struct","v":{"reb_ai":{"t":"bool","v":false},"unk_fd":{"t":"u8","v":1},"ai_benefit":{"t":"bool","v":true},"trade_allowed":{"t":"bool","v":false},"commerce_raiding":{"t":"bool","v":false},"view_intel":{"t":"bool","v":false},"grav_synth":{"t":"bool","v":false},"advanced_sensors":{"t":"bool","v":false},"arcology":{"t":"bool","v":false},"unk_105":{"t":"u8","v":0},"unk_106":{"t":"u8","v":0},"unk_107":{"t":"u8","v":0}}},"after":{"t":"struct","v":{"reb_ai":{"t":"bool","v":false},"unk_fd":{"t":"u8","v":1},"ai_benefit":{"t":"bool","v":true},"trade_allowed":{"t":"bool","v":false},"commerce_raiding":{"t":"bool","v":false},"view_intel":{"t":"bool","v":false},"grav_synth":{"t":"bool","v":false},"advanced_sensors":{"t":"bool","v":false},"arcology":{"t":"bool","v":false},"unk_105":{"t":"u8","v":0},"unk_106":{"t":"u8","v":0},"unk_107":{"t":"u8","v":0}}}},"modifiers":{"before":{"t":"struct","v":{"pddm":{"t":"f32","v":1},"con_mod":{"t":"list","v":[{"t":"f32","v":1},{"t":"f32","v":1},{"t":"f32","v":1}]},"sav_mod":{"t":"list","v":[{"t":"f32","v":1},{"t":"f32","v":1},{"t":"f32","v":1}]},"out_mod":{"t":"f32","v":1.10000002},"unk_128":{"t":"u32","v":1065353216},"unk_12c":{"t":"u32","v":1065353216},"pop_mod":{"t":"f32","v":1.10000002},"terra_mod":{"t":"f32","v":1},"asteroid_mining":{"t":"bool","v":false},"unk_139_13b":{"t":"u32","v":0},"unk_13c":{"t":"u32","v":1045220557},"min_rate":{"t":"f32","v":1},"unk_144":{"t":"u32","v":0},"per_gate_traffic":{"t":"i32","v":0},"unk_14c":{"t":"u32","v":0},"cast_range":{"t":"f32","v":0},"cast_efficiency":{"t":"f32","v":0},"cast_threshold":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"pddm":{"t":"f32","v":1},"con_mod":{"t":"list","v":[{"t":"f32","v":0.899999976},{"t":"f32","v":0.899999976},{"t":"f32","v":0.899999976}]},"sav_mod":{"t":"list","v":[{"t":"f32","v":1},{"t":"f32","v":1},{"t":"f32","v":1}]},"out_mod":{"t":"f32","v":1.25},"unk_128":{"t":"u32","v":1065353216},"unk_12c":{"t":"u32","v":1065353216},"pop_mod":{"t":"f32","v":1.10000002},"terra_mod":{"t":"f32","v":1},"asteroid_mining":{"t":"bool","v":false},"unk_139_13b":{"t":"u32","v":0},"unk_13c":{"t":"u32","v":1045220557},"min_rate":{"t":"f32","v":1},"unk_144":{"t":"u32","v":0},"per_gate_traffic":{"t":"i32","v":0},"unk_14c":{"t":"u32","v":0},"cast_range":{"t":"f32","v":0},"cast_efficiency":{"t":"f32","v":0},"cast_threshold":{"t":"f32","v":0}}}},"design_masks":{"before":{"t":"struct","v":{"design_options_a":{"t":"u32","v":0},"design_options_b":{"t":"u32","v":64}}},"after":{"t":"struct","v":{"design_options_a":{"t":"u32","v":0},"design_options_b":{"t":"u32","v":64}}}},"translation":{"before":{"t":"struct","v":{"translation_known":{"t":"u32","v":4}}},"after":{"t":"struct","v":{"translation_known":{"t":"u32","v":4}}}},"vaccines":{"before":{"t":"struct","v":{"has_vaccine":{"t":"u32","v":0},"has_immunity":{"t":"u32","v":0},"node_track_mask":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"has_vaccine":{"t":"u32","v":0},"has_immunity":{"t":"u32","v":0},"node_track_mask":{"t":"u32","v":0}}}},"research_target":{"before":{"t":"struct","v":{"research_target":{"t":"ptr","v":"0x04ab12f8"},"research_target_set":{"t":"bool","v":true}}},"after":{"t":"struct","v":{"research_target":{"t":"ptr","v":"0x00000000"},"research_target_set":{"t":"bool","v":false}}}},"node_bore_ptr":{"before":{"t":"struct","v":{"node_bore_block":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"node_bore_block":{"t":"ptr","v":"0x00000000"}}}},"inc_mod":{"before":{"t":"struct","v":{"inc_mod":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"inc_mod":{"t":"f32","v":1}}}},"capture_designs":{"before":{"t":"struct","v":{"capture_designs":{"t":"bool","v":false},"unk_331_333":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"capture_designs":{"t":"bool","v":false},"unk_331_333":{"t":"u32","v":0}}}},"species_flags":{"before":{"t":"struct","v":{"species_flags":{"t":"list","v":[{"t":"u32","v":0},{"t":"u32","v":0},{"t":"u32","v":15},{"t":"u32","v":0},{"t":"u32","v":0},{"t":"u32","v":0},{"t":"u32","v":0}]},"count":{"t":"u32","v":7}}},"after":{"t":"struct","v":{"species_flags":{"t":"list","v":[{"t":"u32","v":0},{"t":"u32","v":0},{"t":"u32","v":15},{"t":"u32","v":0},{"t":"u32","v":0},{"t":"u32","v":0},{"t":"u32","v":0}]},"count":{"t":"u32","v":7}}}},"roll":{"before":{"t":"struct","v":{"research_roll_pending":{"t":"bool","v":false},"unk_3b5_3b7":{"t":"u32","v":1},"ai_rebellion":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"research_roll_pending":{"t":"bool","v":false},"unk_3b5_3b7":{"t":"u32","v":1},"ai_rebellion":{"t":"ptr","v":"0x00000000"}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}}},"ours":{"ret":null,"side":{"suit":{"after":{"t":"struct","v":{"suit_tol":{"t":"f32","v":6.25},"max_overharvest":{"t":"f32","v":0.0199999996}}}},"res_mod":{"after":{"t":"struct","v":{"res_mod":{"t":"f32","v":0.899999976}}}},"abilities":{"after":{"t":"struct","v":{"reb_ai":{"t":"bool","v":false},"unk_fd":{"t":"u8","v":1},"ai_benefit":{"t":"bool","v":true},"trade_allowed":{"t":"bool","v":false},"commerce_raiding":{"t":"bool","v":false},"view_intel":{"t":"bool","v":false},"grav_synth":{"t":"bool","v":false},"advanced_sensors":{"t":"bool","v":false},"arcology":{"t":"bool","v":false},"unk_105":{"t":"u8","v":0},"unk_106":{"t":"u8","v":0},"unk_107":{"t":"u8","v":0}}}},"modifiers":{"after":{"t":"struct","v":{"pddm":{"t":"f32","v":1},"con_mod":{"t":"list","v":[{"t":"f32","v":0.899999976},{"t":"f32","v":0.899999976},{"t":"f32","v":0.899999976}]},"sav_mod":{"t":"list","v":[{"t":"f32","v":1},{"t":"f32","v":1},{"t":"f32","v":1}]},"out_mod":{"t":"f32","v":1.25},"unk_128":{"t":"u32","v":1065353216},"unk_12c":{"t":"u32","v":1065353216},"pop_mod":{"t":"f32","v":1.10000002},"terra_mod":{"t":"f32","v":1},"asteroid_mining":{"t":"bool","v":false},"unk_139_13b":{"t":"u32","v":0},"unk_13c":{"t":"u32","v":1045220557},"min_rate":{"t":"f32","v":1},"unk_144":{"t":"u32","v":0},"per_gate_traffic":{"t":"i32","v":0},"unk_14c":{"t":"u32","v":0},"cast_range":{"t":"f32","v":0},"cast_efficiency":{"t":"f32","v":0},"cast_threshold":{"t":"f32","v":0}}}},"design_masks":{"after":{"t":"struct","v":{"design_options_a":{"t":"u32","v":0},"design_options_b":{"t":"u32","v":64}}}},"translation":{"after":{"t":"struct","v":{"translation_known":{"t":"u32","v":4}}}},"vaccines":{"after":{"t":"struct","v":{"has_vaccine":{"t":"u32","v":0},"has_immunity":{"t":"u32","v":0},"node_track_mask":{"t":"u32","v":0}}}},"research_target":{"after":{"t":"struct","v":{"research_target":{"t":"ptr","v":"0x00000000"},"research_target_set":{"t":"bool","v":false}}}},"node_bore_ptr":{"after":{"t":"struct","v":{"node_bore_block":{"t":"ptr","v":"0x00000000"}}}},"inc_mod":{"after":{"t":"struct","v":{"inc_mod":{"t":"f32","v":1}}}},"capture_designs":{"after":{"t":"struct","v":{"capture_designs":{"t":"bool","v":false},"unk_331_333":{"t":"u32","v":0}}}},"species_flags":{"after":{"t":"struct","v":{"species_flags":{"t":"list","v":[{"t":"u32","v":0},{"t":"u32","v":0},{"t":"u32","v":15},{"t":"u32","v":0},{"t":"u32","v":0},{"t":"u32","v":0},{"t":"u32","v":0}]},"count":{"t":"u32","v":7}}}},"roll":{"after":{"t":"struct","v":{"research_roll_pending":{"t":"bool","v":false},"unk_3b5_3b7":{"t":"u32","v":1},"ai_rebellion":{"t":"ptr","v":"0x00000000"}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":413},"next_index":{"t":"i64","v":211}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["player"],"undeclared":[{"region":"player","off":628,"len":3},{"region":"player","off":632,"len":3},{"region":"player","off":636,"len":3},{"region":"player","off":688,"len":1}],"n":4}} +{"ts":366919035,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":72,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x0e945738","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":912,"n":"fleet_id"},{"t":"i32","v":7,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[1].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[2].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[3].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[4].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[5].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[6].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[7].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[8].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[9].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[1].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[2].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[3].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[4].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[5].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[6].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[7].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[8].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[9].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}} +{"ts":366919365,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":73,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x0e945860","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1120,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}} +{"ts":366919584,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":74,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x209113e8","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1152,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}} +{"ts":366919790,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":75,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x209119b0","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1264,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}} +{"ts":366919973,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":76,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x20911ad8","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1296,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}} +{"ts":366920338,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":77,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x20911510","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1360,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}} +{"ts":366920580,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":78,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x357c7648","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":34,"n":"fleet_id"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":1,"n":"wpt_type"},{"t":"i32","v":1,"n":"wpt_count"},{"t":"i32","v":0,"n":"dest_kind"},{"t":"f32","v":2,"n":"speed"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-9.19839668},"y":{"t":"f32","v":7.22444439},"z":{"t":"f32","v":0.811615944}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-7.83329344},"y":{"t":"f32","v":8.47716427},"z":{"t":"f32","v":0.058498323}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-10.5634995},"y":{"t":"f32","v":5.97172451},"z":{"t":"f32","v":1.56473362}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-9.19839668},"y":{"t":"f32","v":7.22444439},"z":{"t":"f32","v":0.811615944}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":14}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-7.83329344},"y":{"t":"f32","v":8.47716427},"z":{"t":"f32","v":0.058498323}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-9.19839668},"y":{"t":"f32","v":7.22444439},"z":{"t":"f32","v":0.811615944}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":14}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[{"region":"fleet","off":220,"len":1},{"region":"fleet","off":268,"len":1}],"n":2}} +{"ts":366920772,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":79,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x357c62a0","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":50,"n":"fleet_id"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":1,"n":"wpt_type"},{"t":"i32","v":1,"n":"wpt_count"},{"t":"i32","v":0,"n":"dest_kind"},{"t":"f32","v":2,"n":"speed"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-10.9839945},"y":{"t":"f32","v":3.1515913},"z":{"t":"f32","v":3.12465525}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.0393867},"y":{"t":"f32","v":1.58417809},"z":{"t":"f32","v":3.93145895}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.9839945},"y":{"t":"f32","v":3.1515913},"z":{"t":"f32","v":3.12465525}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":18}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":16}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.0393867},"y":{"t":"f32","v":1.58417821},"z":{"t":"f32","v":3.93145895}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.9839945},"y":{"t":"f32","v":3.1515913},"z":{"t":"f32","v":3.12465525}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":16}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}}}}},"diverged":true,"diff":[{"path":"side.pos.after.v.y","why":"exact","orig":{"t":"f32","v":1.58417809},"ours":{"t":"f32","v":1.58417821}}],"coverage":{"guards":["fleet"],"undeclared":[{"region":"fleet","off":220,"len":1},{"region":"fleet","off":268,"len":1}],"n":2}} +{"ts":366920957,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":80,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x357c6f58","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":66,"n":"fleet_id"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":1,"n":"wpt_type"},{"t":"i32","v":1,"n":"wpt_count"},{"t":"i32","v":0,"n":"dest_kind"},{"t":"f32","v":2,"n":"speed"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-9.99755001},"y":{"t":"f32","v":4.21149492},"z":{"t":"f32","v":2.20177913}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":20}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":18}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-9.99755001},"y":{"t":"f32","v":4.21149445},"z":{"t":"f32","v":2.20177913}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":18}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395}}}}}},"diverged":true,"diff":[{"path":"side.pos.after.v.y","why":"exact","orig":{"t":"f32","v":4.21149492},"ours":{"t":"f32","v":4.21149445}}],"coverage":{"guards":["fleet"],"undeclared":[{"region":"fleet","off":160,"len":4},{"region":"fleet","off":220,"len":1},{"region":"fleet","off":268,"len":1}],"n":3}} +{"ts":366921388,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":81,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9c0ad8","n":"system"},{"t":"i32","v":0,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":0},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":5.65746593},"res":{"t":"i32","v":4526},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":0},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":5.65746593},"res":{"t":"i32","v":4526},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":0},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":5.65746593},"res":{"t":"i32","v":4526},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":366921775,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":82,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9c0db8","n":"system"},{"t":"i32","v":1,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":1},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.65671718},"res":{"t":"i32","v":4295},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":1},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.65671718},"res":{"t":"i32","v":4295},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":1},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.65671718},"res":{"t":"i32","v":4295},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":366922131,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":83,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9c1098","n":"system"},{"t":"i32","v":2,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":2},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":4.85715199},"res":{"t":"i32","v":6454},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":2},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":4.85715199},"res":{"t":"i32","v":6454},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":2},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":4.85715199},"res":{"t":"i32","v":6454},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":366922498,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":84,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ac258","n":"system"},{"t":"i32","v":3,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":3},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":17.2924309},"res":{"t":"i32","v":3323},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":3},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":17.2924309},"res":{"t":"i32","v":3323},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":3},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":17.2924309},"res":{"t":"i32","v":3323},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":366923003,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":85,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ac538","n":"system"},{"t":"i32","v":4,"n":"system_index"},{"t":"i32","v":0,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":3}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":4}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":4},"owner":{"t":"i32","v":0},"species":{"t":"i32","v":0},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":3},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":11.1062069},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":4},"owner":{"t":"i32","v":0},"species":{"t":"i32","v":0},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":3},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":11.1062069},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":4}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":4},"owner":{"t":"i32","v":0},"species":{"t":"i32","v":0},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":3},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":11.1062069},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":366923393,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":86,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ac818","n":"system"},{"t":"i32","v":5,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":5},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":8.92636013},"res":{"t":"i32","v":6439},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":5},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":8.92636013},"res":{"t":"i32","v":6439},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":5},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":8.92636013},"res":{"t":"i32","v":6439},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":366923842,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":87,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9acaf8","n":"system"},{"t":"i32","v":6,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":6},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":0.869569659},"res":{"t":"i32","v":3455},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":6},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":0.869569659},"res":{"t":"i32","v":3455},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":6},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":0.869569659},"res":{"t":"i32","v":3455},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":366924272,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":88,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9acdd8","n":"system"},{"t":"i32","v":7,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":7},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":8},"suit":{"t":"f32","v":2.1625092},"res":{"t":"i32","v":5343},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":7},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":8},"suit":{"t":"f32","v":2.1625092},"res":{"t":"i32","v":5343},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":7},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":8},"suit":{"t":"f32","v":2.1625092},"res":{"t":"i32","v":5343},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":366924731,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":89,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ad0b8","n":"system"},{"t":"i32","v":8,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":8},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":12.5012217},"res":{"t":"i32","v":7719},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":8},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":12.5012217},"res":{"t":"i32","v":7719},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":8},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":12.5012217},"res":{"t":"i32","v":7719},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":366925099,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":90,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ad398","n":"system"},{"t":"i32","v":9,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":9},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":5.32649183},"res":{"t":"i32","v":5752},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":9},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":5.32649183},"res":{"t":"i32","v":5752},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":9},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":5.32649183},"res":{"t":"i32","v":5752},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":366925457,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":91,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ad678","n":"system"},{"t":"i32","v":10,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":10},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":14.9623423},"res":{"t":"i32","v":7881},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":10},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":14.9623423},"res":{"t":"i32","v":7881},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":10},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":14.9623423},"res":{"t":"i32","v":7881},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":366925905,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":92,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20906c70","n":"system"},{"t":"i32","v":11,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":11},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":13.7235212},"res":{"t":"i32","v":4395},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":11},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":13.7235212},"res":{"t":"i32","v":4395},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":11},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":13.7235212},"res":{"t":"i32","v":4395},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":366926331,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":93,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20906f50","n":"system"},{"t":"i32","v":12,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":12},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":16.9405556},"res":{"t":"i32","v":3973},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":12},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":16.9405556},"res":{"t":"i32","v":3973},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":12},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":16.9405556},"res":{"t":"i32","v":3973},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":366926755,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":94,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907230","n":"system"},{"t":"i32","v":13,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":13},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":0.416553319},"res":{"t":"i32","v":5889},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":13},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":0.416553319},"res":{"t":"i32","v":5889},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":13},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":0.416553319},"res":{"t":"i32","v":5889},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":366927217,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":95,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907510","n":"system"},{"t":"i32","v":14,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":14},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.5084848},"res":{"t":"i32","v":4976},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":14},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.5084848},"res":{"t":"i32","v":4976},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":14},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.5084848},"res":{"t":"i32","v":4976},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":366928281,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":96,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x209077f0","n":"system"},{"t":"i32","v":15,"n":"system_index"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":3}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":4}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":15},"owner":{"t":"i32","v":1},"species":{"t":"i32","v":2},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":3},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":15},"owner":{"t":"i32","v":1},"species":{"t":"i32","v":2},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":3},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":4}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":15},"owner":{"t":"i32","v":1},"species":{"t":"i32","v":2},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":3},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[{"region":"system","off":216,"len":1},{"region":"system","off":368,"len":1},{"region":"system","off":568,"len":4}],"n":3}} +{"ts":366929141,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":97,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907ad0","n":"system"},{"t":"i32","v":16,"n":"system_index"},{"t":"i32","v":7,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":3}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":4}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":128}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":128}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":16},"owner":{"t":"i32","v":7},"species":{"t":"i32","v":4},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":true},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":120000000},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":3},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":128},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":3394},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":16},"owner":{"t":"i32","v":7},"species":{"t":"i32","v":4},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":true},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":120000000},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":3},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":128},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":3394},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":4}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":128}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":16},"owner":{"t":"i32","v":7},"species":{"t":"i32","v":4},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":true},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":120000000},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":3},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":128},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":3394},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":366929793,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":98,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20909518","n":"system"},{"t":"i32","v":17,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":17},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":9.509552},"res":{"t":"i32","v":4085},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":17},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":9.509552},"res":{"t":"i32","v":4085},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":17},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":9.509552},"res":{"t":"i32","v":4085},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":366930254,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":99,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908978","n":"system"},{"t":"i32","v":18,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":18},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":14.0226393},"res":{"t":"i32","v":5476},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":18},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":14.0226393},"res":{"t":"i32","v":5476},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":18},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":14.0226393},"res":{"t":"i32","v":5476},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":366930708,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":100,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20909800","n":"system"},{"t":"i32","v":19,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":19},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.6182585},"res":{"t":"i32","v":3690},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":19},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.6182585},"res":{"t":"i32","v":3690},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":19},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.6182585},"res":{"t":"i32","v":3690},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":366931134,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":101,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907dd8","n":"system"},{"t":"i32","v":20,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":20},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":11.8586617},"res":{"t":"i32","v":7258},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":20},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":11.8586617},"res":{"t":"i32","v":7258},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":20},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":11.8586617},"res":{"t":"i32","v":7258},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":366931572,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":102,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x209080c0","n":"system"},{"t":"i32","v":21,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":21},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":1},"suit":{"t":"f32","v":0.868489087},"res":{"t":"i32","v":5445},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":21},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":1},"suit":{"t":"f32","v":0.868489087},"res":{"t":"i32","v":5445},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":21},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":1},"suit":{"t":"f32","v":0.868489087},"res":{"t":"i32","v":5445},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":366931995,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":103,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x209083a8","n":"system"},{"t":"i32","v":22,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":22},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":19.3835239},"res":{"t":"i32","v":7259},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":22},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":19.3835239},"res":{"t":"i32","v":7259},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":22},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":19.3835239},"res":{"t":"i32","v":7259},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":366932456,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":104,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20909230","n":"system"},{"t":"i32","v":23,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":23},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":19.8140602},"res":{"t":"i32","v":5610},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":23},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":19.8140602},"res":{"t":"i32","v":5610},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":23},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":19.8140602},"res":{"t":"i32","v":5610},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":366932990,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":105,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908690","n":"system"},{"t":"i32","v":24,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":24},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":12.9136686},"res":{"t":"i32","v":6368},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":24},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":12.9136686},"res":{"t":"i32","v":6368},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":24},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":12.9136686},"res":{"t":"i32","v":6368},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":366933416,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":106,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908c60","n":"system"},{"t":"i32","v":25,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":25},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.58767724},"res":{"t":"i32","v":5058},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":25},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.58767724},"res":{"t":"i32","v":5058},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":25},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.58767724},"res":{"t":"i32","v":5058},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":366933860,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":107,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908f48","n":"system"},{"t":"i32","v":26,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":26},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":5.11237812},"res":{"t":"i32","v":6252},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":26},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":5.11237812},"res":{"t":"i32","v":6252},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":26},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":5.11237812},"res":{"t":"i32","v":6252},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":366934278,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":108,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x2090e3b0","n":"system"},{"t":"i32","v":27,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":395,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":27},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":7.83555746},"res":{"t":"i32","v":5210},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":27},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":7.83555746},"res":{"t":"i32","v":5210},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":395},"next_index":{"t":"i64","v":229}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":27},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":5},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":7.83555746},"res":{"t":"i32","v":5210},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":395},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":398490533,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":109,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x0e945738","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":912,"n":"fleet_id"},{"t":"i32","v":7,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[1].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[2].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[3].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[4].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[5].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[6].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[7].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[8].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[9].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[1].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[2].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[3].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[4].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[5].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[6].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[7].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[8].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[9].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}} +{"ts":398490797,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":110,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x0e945860","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1120,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}} +{"ts":398490995,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":111,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x209113e8","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1152,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}} +{"ts":398491184,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":112,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x209119b0","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1264,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}} +{"ts":398491365,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":113,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x20911ad8","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1296,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}} +{"ts":398491560,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":114,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x20911510","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1360,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}} +{"ts":398491777,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":115,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x357c7648","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":34,"n":"fleet_id"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":1,"n":"wpt_type"},{"t":"i32","v":1,"n":"wpt_count"},{"t":"i32","v":0,"n":"dest_kind"},{"t":"f32","v":2,"n":"speed"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":true},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-7.83329344},"y":{"t":"f32","v":8.47716427},"z":{"t":"f32","v":0.058498323}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.95160389},"y":{"t":"f32","v":9.28626823},"z":{"t":"f32","v":-0.42792356}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-9.19839668},"y":{"t":"f32","v":7.22444439},"z":{"t":"f32","v":0.811615944}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-7.83329344},"y":{"t":"f32","v":8.47716427},"z":{"t":"f32","v":0.058498323}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":14}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":12.7082443}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}},"ours":{"ret":{"t":"bool","v":true},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.95160389},"y":{"t":"f32","v":9.28626823},"z":{"t":"f32","v":-0.42792356}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-7.83329344},"y":{"t":"f32","v":8.47716427},"z":{"t":"f32","v":0.058498323}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":12.7082443}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[{"region":"fleet","off":160,"len":4},{"region":"fleet","off":204,"len":1},{"region":"fleet","off":219,"len":2},{"region":"fleet","off":224,"len":26},{"region":"fleet","off":268,"len":1}],"n":5}} +{"ts":398491972,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":116,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x357c62a0","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":50,"n":"fleet_id"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":1,"n":"wpt_type"},{"t":"i32","v":1,"n":"wpt_count"},{"t":"i32","v":0,"n":"dest_kind"},{"t":"f32","v":2,"n":"speed"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-10.0393867},"y":{"t":"f32","v":1.58417809},"z":{"t":"f32","v":3.93145895}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-9.09477901},"y":{"t":"f32","v":0.0167649984},"z":{"t":"f32","v":4.73826265}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-10.9839945},"y":{"t":"f32","v":3.1515913},"z":{"t":"f32","v":3.12465525}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.0393867},"y":{"t":"f32","v":1.58417809},"z":{"t":"f32","v":3.93145895}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":14}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-9.09477901},"y":{"t":"f32","v":0.0167651176},"z":{"t":"f32","v":4.73826265}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.0393867},"y":{"t":"f32","v":1.58417809},"z":{"t":"f32","v":3.93145895}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":14}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}}},"diverged":true,"diff":[{"path":"side.pos.after.v.y","why":"exact","orig":{"t":"f32","v":0.0167649984},"ours":{"t":"f32","v":0.0167651176}}],"coverage":{"guards":["fleet"],"undeclared":[{"region":"fleet","off":220,"len":1},{"region":"fleet","off":268,"len":1}],"n":2}} +{"ts":398492154,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":117,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x357c6f58","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":66,"n":"fleet_id"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":1,"n":"wpt_type"},{"t":"i32","v":1,"n":"wpt_count"},{"t":"i32","v":0,"n":"dest_kind"},{"t":"f32","v":2,"n":"speed"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-9.99755001},"y":{"t":"f32","v":4.21149492},"z":{"t":"f32","v":2.20177913}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-8.0664978},"y":{"t":"f32","v":3.70398545},"z":{"t":"f32","v":2.08570695}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-9.99755001},"y":{"t":"f32","v":4.21149492},"z":{"t":"f32","v":2.20177913}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":18}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":16}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-8.0664978},"y":{"t":"f32","v":3.70398545},"z":{"t":"f32","v":2.08570695}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-9.99755001},"y":{"t":"f32","v":4.21149492},"z":{"t":"f32","v":2.20177913}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":16}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[{"region":"fleet","off":220,"len":1},{"region":"fleet","off":268,"len":1}],"n":2}} +{"ts":398492332,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":118,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x357c7ae8","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":98,"n":"fleet_id"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":1,"n":"wpt_type"},{"t":"i32","v":1,"n":"wpt_count"},{"t":"i32","v":0,"n":"dest_kind"},{"t":"f32","v":2,"n":"speed"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.9996872},"y":{"t":"f32","v":3.14307928},"z":{"t":"f32","v":1.50941014}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":20}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":18}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.9996872},"y":{"t":"f32","v":3.14307904},"z":{"t":"f32","v":1.50941014}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":18}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376}}}}}},"diverged":true,"diff":[{"path":"side.pos.after.v.y","why":"exact","orig":{"t":"f32","v":3.14307928},"ours":{"t":"f32","v":3.14307904}}],"coverage":{"guards":["fleet"],"undeclared":[{"region":"fleet","off":160,"len":4},{"region":"fleet","off":220,"len":1},{"region":"fleet","off":268,"len":1}],"n":3}} +{"ts":398492793,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":119,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9c0ad8","n":"system"},{"t":"i32","v":0,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":0},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":5.65746593},"res":{"t":"i32","v":4526},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":0},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":5.65746593},"res":{"t":"i32","v":4526},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":0},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":5.65746593},"res":{"t":"i32","v":4526},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":398493321,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":120,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9c0db8","n":"system"},{"t":"i32","v":1,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":1},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.65671718},"res":{"t":"i32","v":4295},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":1},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.65671718},"res":{"t":"i32","v":4295},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":1},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.65671718},"res":{"t":"i32","v":4295},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":398493811,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":121,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9c1098","n":"system"},{"t":"i32","v":2,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":2},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":4.85715199},"res":{"t":"i32","v":6454},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":2},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":4.85715199},"res":{"t":"i32","v":6454},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":2},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":4.85715199},"res":{"t":"i32","v":6454},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":398494213,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":122,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ac258","n":"system"},{"t":"i32","v":3,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":3},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":17.2924309},"res":{"t":"i32","v":3323},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":3},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":17.2924309},"res":{"t":"i32","v":3323},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":3},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":17.2924309},"res":{"t":"i32","v":3323},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":398494671,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":123,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ac538","n":"system"},{"t":"i32","v":4,"n":"system_index"},{"t":"i32","v":0,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":4}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":5}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":4},"owner":{"t":"i32","v":0},"species":{"t":"i32","v":0},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":4},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":11.1062069},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":4},"owner":{"t":"i32","v":0},"species":{"t":"i32","v":0},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":4},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":11.1062069},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":5}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":4},"owner":{"t":"i32","v":0},"species":{"t":"i32","v":0},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":4},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":11.1062069},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":398495095,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":124,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ac818","n":"system"},{"t":"i32","v":5,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":5},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":8.92636013},"res":{"t":"i32","v":6439},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":5},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":8.92636013},"res":{"t":"i32","v":6439},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":5},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":8.92636013},"res":{"t":"i32","v":6439},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":398495500,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":125,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9acaf8","n":"system"},{"t":"i32","v":6,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":6},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":0.869569659},"res":{"t":"i32","v":3455},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":6},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":0.869569659},"res":{"t":"i32","v":3455},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":6},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":0.869569659},"res":{"t":"i32","v":3455},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":398495897,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":126,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9acdd8","n":"system"},{"t":"i32","v":7,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":7},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":8},"suit":{"t":"f32","v":2.1625092},"res":{"t":"i32","v":5343},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":7},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":8},"suit":{"t":"f32","v":2.1625092},"res":{"t":"i32","v":5343},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":7},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":8},"suit":{"t":"f32","v":2.1625092},"res":{"t":"i32","v":5343},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":398496275,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":127,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ad0b8","n":"system"},{"t":"i32","v":8,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":8},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":12.5012217},"res":{"t":"i32","v":7719},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":8},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":12.5012217},"res":{"t":"i32","v":7719},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":8},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":12.5012217},"res":{"t":"i32","v":7719},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":398496661,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":128,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ad398","n":"system"},{"t":"i32","v":9,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":9},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":5.32649183},"res":{"t":"i32","v":5752},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":9},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":5.32649183},"res":{"t":"i32","v":5752},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":9},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":5.32649183},"res":{"t":"i32","v":5752},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":398497042,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":129,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ad678","n":"system"},{"t":"i32","v":10,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":10},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":14.9623423},"res":{"t":"i32","v":7881},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":10},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":14.9623423},"res":{"t":"i32","v":7881},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":10},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":14.9623423},"res":{"t":"i32","v":7881},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":398497476,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":130,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20906c70","n":"system"},{"t":"i32","v":11,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":11},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":13.7235212},"res":{"t":"i32","v":4395},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":11},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":13.7235212},"res":{"t":"i32","v":4395},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":11},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":13.7235212},"res":{"t":"i32","v":4395},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":398497914,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":131,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20906f50","n":"system"},{"t":"i32","v":12,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":12},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":16.9405556},"res":{"t":"i32","v":3973},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":12},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":16.9405556},"res":{"t":"i32","v":3973},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":12},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":16.9405556},"res":{"t":"i32","v":3973},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":398498338,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":132,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907230","n":"system"},{"t":"i32","v":13,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":13},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":0.416553319},"res":{"t":"i32","v":5889},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":13},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":0.416553319},"res":{"t":"i32","v":5889},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":13},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":0.416553319},"res":{"t":"i32","v":5889},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":398498772,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":133,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907510","n":"system"},{"t":"i32","v":14,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":14},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.5084848},"res":{"t":"i32","v":4976},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":14},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.5084848},"res":{"t":"i32","v":4976},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":14},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.5084848},"res":{"t":"i32","v":4976},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":398499320,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":134,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x209077f0","n":"system"},{"t":"i32","v":15,"n":"system_index"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":4}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":5}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":15},"owner":{"t":"i32","v":1},"species":{"t":"i32","v":2},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":4},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":15},"owner":{"t":"i32","v":1},"species":{"t":"i32","v":2},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":4},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":5}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":15},"owner":{"t":"i32","v":1},"species":{"t":"i32","v":2},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":4},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[{"region":"system","off":216,"len":1},{"region":"system","off":368,"len":1},{"region":"system","off":568,"len":4}],"n":3}} +{"ts":398499840,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":135,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907ad0","n":"system"},{"t":"i32","v":16,"n":"system_index"},{"t":"i32","v":7,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":4}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":5}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":128}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":128}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":16},"owner":{"t":"i32","v":7},"species":{"t":"i32","v":4},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":true},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":120000000},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":4},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":128},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":3394},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":16},"owner":{"t":"i32","v":7},"species":{"t":"i32","v":4},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":true},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":120000000},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":4},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":128},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":3394},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":5}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":128}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":16},"owner":{"t":"i32","v":7},"species":{"t":"i32","v":4},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":true},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":120000000},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":4},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":128},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":3394},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":398500349,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":136,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20909518","n":"system"},{"t":"i32","v":17,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":17},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":9.509552},"res":{"t":"i32","v":4085},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":17},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":9.509552},"res":{"t":"i32","v":4085},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":17},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":9.509552},"res":{"t":"i32","v":4085},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":398500850,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":137,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908978","n":"system"},{"t":"i32","v":18,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":18},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":14.0226393},"res":{"t":"i32","v":5476},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":18},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":14.0226393},"res":{"t":"i32","v":5476},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":18},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":14.0226393},"res":{"t":"i32","v":5476},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":398501276,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":138,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20909800","n":"system"},{"t":"i32","v":19,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":19},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.6182585},"res":{"t":"i32","v":3690},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":19},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.6182585},"res":{"t":"i32","v":3690},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":19},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.6182585},"res":{"t":"i32","v":3690},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":398501723,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":139,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907dd8","n":"system"},{"t":"i32","v":20,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":20},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":11.8586617},"res":{"t":"i32","v":7258},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":20},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":11.8586617},"res":{"t":"i32","v":7258},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":20},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":11.8586617},"res":{"t":"i32","v":7258},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":398502147,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":140,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x209080c0","n":"system"},{"t":"i32","v":21,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":21},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":1},"suit":{"t":"f32","v":0.868489087},"res":{"t":"i32","v":5445},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":21},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":1},"suit":{"t":"f32","v":0.868489087},"res":{"t":"i32","v":5445},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":21},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":1},"suit":{"t":"f32","v":0.868489087},"res":{"t":"i32","v":5445},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":398502581,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":141,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x209083a8","n":"system"},{"t":"i32","v":22,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":22},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":19.3835239},"res":{"t":"i32","v":7259},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":22},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":19.3835239},"res":{"t":"i32","v":7259},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":22},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":19.3835239},"res":{"t":"i32","v":7259},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":398503007,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":142,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20909230","n":"system"},{"t":"i32","v":23,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":23},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":19.8140602},"res":{"t":"i32","v":5610},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":23},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":19.8140602},"res":{"t":"i32","v":5610},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":23},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":19.8140602},"res":{"t":"i32","v":5610},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":398503427,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":143,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908690","n":"system"},{"t":"i32","v":24,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":24},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":12.9136686},"res":{"t":"i32","v":6368},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":24},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":12.9136686},"res":{"t":"i32","v":6368},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":24},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":12.9136686},"res":{"t":"i32","v":6368},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":398503860,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":144,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908c60","n":"system"},{"t":"i32","v":25,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":25},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.58767724},"res":{"t":"i32","v":5058},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":25},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.58767724},"res":{"t":"i32","v":5058},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":25},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.58767724},"res":{"t":"i32","v":5058},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":398504276,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":145,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908f48","n":"system"},{"t":"i32","v":26,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":26},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":5.11237812},"res":{"t":"i32","v":6252},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":26},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":5.11237812},"res":{"t":"i32","v":6252},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":26},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":5.11237812},"res":{"t":"i32","v":6252},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":398504700,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":146,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x2090e3b0","n":"system"},{"t":"i32","v":27,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":376,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":27},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":7.83555746},"res":{"t":"i32","v":5210},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":27},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":7.83555746},"res":{"t":"i32","v":5210},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":376},"next_index":{"t":"i64","v":248}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":27},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":6},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":7.83555746},"res":{"t":"i32","v":5210},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":376},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":398505487,"hook":"Game::ServerPlayer::OnTechResearched","mode":"compare","call_id":147,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e955420","n":"player"},{"t":"i32","v":1,"n":"player_index"},{"t":"i32","v":2,"n":"species"},{"t":"ptr","v":"0x04ab1428","n":"def"},{"t":"i32","v":10094,"n":"tech_id"},{"t":"i32","v":142,"n":"def_node_index"},{"t":"str","v":"IND_TRKSTL","n":"tech_name"},{"t":"bool","v":false,"n":"silent"},{"t":"bool","v":true,"n":"is_current_target"},{"t":"i32","v":4,"n":"owned_systems_bytes"},{"t":"bool","v":false,"n":"rebel_ai"},{"t":"bool","v":true,"n":"ai_benefit_in"},{"t":"i32","v":3,"n":"gate_traffic_tpgate"},{"t":"i32","v":6,"n":"gate_traffic_gatamp"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"suit":{"before":{"t":"struct","v":{"suit_tol":{"t":"f32","v":6.25},"max_overharvest":{"t":"f32","v":0.0199999996}}},"after":{"t":"struct","v":{"suit_tol":{"t":"f32","v":6.25},"max_overharvest":{"t":"f32","v":0.0199999996}}}},"res_mod":{"before":{"t":"struct","v":{"res_mod":{"t":"f32","v":0.899999976}}},"after":{"t":"struct","v":{"res_mod":{"t":"f32","v":0.899999976}}}},"abilities":{"before":{"t":"struct","v":{"reb_ai":{"t":"bool","v":false},"unk_fd":{"t":"u8","v":1},"ai_benefit":{"t":"bool","v":true},"trade_allowed":{"t":"bool","v":false},"commerce_raiding":{"t":"bool","v":false},"view_intel":{"t":"bool","v":false},"grav_synth":{"t":"bool","v":false},"advanced_sensors":{"t":"bool","v":false},"arcology":{"t":"bool","v":false},"unk_105":{"t":"u8","v":0},"unk_106":{"t":"u8","v":0},"unk_107":{"t":"u8","v":0}}},"after":{"t":"struct","v":{"reb_ai":{"t":"bool","v":false},"unk_fd":{"t":"u8","v":1},"ai_benefit":{"t":"bool","v":true},"trade_allowed":{"t":"bool","v":false},"commerce_raiding":{"t":"bool","v":false},"view_intel":{"t":"bool","v":false},"grav_synth":{"t":"bool","v":false},"advanced_sensors":{"t":"bool","v":false},"arcology":{"t":"bool","v":false},"unk_105":{"t":"u8","v":0},"unk_106":{"t":"u8","v":0},"unk_107":{"t":"u8","v":0}}}},"modifiers":{"before":{"t":"struct","v":{"pddm":{"t":"f32","v":1},"con_mod":{"t":"list","v":[{"t":"f32","v":0.899999976},{"t":"f32","v":0.899999976},{"t":"f32","v":0.899999976}]},"sav_mod":{"t":"list","v":[{"t":"f32","v":1},{"t":"f32","v":1},{"t":"f32","v":1}]},"out_mod":{"t":"f32","v":1.25},"unk_128":{"t":"u32","v":1065353216},"unk_12c":{"t":"u32","v":1065353216},"pop_mod":{"t":"f32","v":1.10000002},"terra_mod":{"t":"f32","v":1},"asteroid_mining":{"t":"bool","v":false},"unk_139_13b":{"t":"u32","v":0},"unk_13c":{"t":"u32","v":1045220557},"min_rate":{"t":"f32","v":1},"unk_144":{"t":"u32","v":0},"per_gate_traffic":{"t":"i32","v":0},"unk_14c":{"t":"u32","v":0},"cast_range":{"t":"f32","v":0},"cast_efficiency":{"t":"f32","v":0},"cast_threshold":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"pddm":{"t":"f32","v":1},"con_mod":{"t":"list","v":[{"t":"f32","v":0.899999976},{"t":"f32","v":0.899999976},{"t":"f32","v":0.899999976}]},"sav_mod":{"t":"list","v":[{"t":"f32","v":1},{"t":"f32","v":1},{"t":"f32","v":1}]},"out_mod":{"t":"f32","v":1.25},"unk_128":{"t":"u32","v":1065353216},"unk_12c":{"t":"u32","v":1065353216},"pop_mod":{"t":"f32","v":1.10000002},"terra_mod":{"t":"f32","v":1},"asteroid_mining":{"t":"bool","v":false},"unk_139_13b":{"t":"u32","v":0},"unk_13c":{"t":"u32","v":1045220557},"min_rate":{"t":"f32","v":1},"unk_144":{"t":"u32","v":0},"per_gate_traffic":{"t":"i32","v":0},"unk_14c":{"t":"u32","v":0},"cast_range":{"t":"f32","v":0},"cast_efficiency":{"t":"f32","v":0},"cast_threshold":{"t":"f32","v":0}}}},"design_masks":{"before":{"t":"struct","v":{"design_options_a":{"t":"u32","v":0},"design_options_b":{"t":"u32","v":64}}},"after":{"t":"struct","v":{"design_options_a":{"t":"u32","v":0},"design_options_b":{"t":"u32","v":2097216}}}},"translation":{"before":{"t":"struct","v":{"translation_known":{"t":"u32","v":4}}},"after":{"t":"struct","v":{"translation_known":{"t":"u32","v":4}}}},"vaccines":{"before":{"t":"struct","v":{"has_vaccine":{"t":"u32","v":0},"has_immunity":{"t":"u32","v":0},"node_track_mask":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"has_vaccine":{"t":"u32","v":0},"has_immunity":{"t":"u32","v":0},"node_track_mask":{"t":"u32","v":0}}}},"research_target":{"before":{"t":"struct","v":{"research_target":{"t":"ptr","v":"0x04ab1428"},"research_target_set":{"t":"bool","v":true}}},"after":{"t":"struct","v":{"research_target":{"t":"ptr","v":"0x00000000"},"research_target_set":{"t":"bool","v":false}}}},"node_bore_ptr":{"before":{"t":"struct","v":{"node_bore_block":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"node_bore_block":{"t":"ptr","v":"0x00000000"}}}},"inc_mod":{"before":{"t":"struct","v":{"inc_mod":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"inc_mod":{"t":"f32","v":1}}}},"capture_designs":{"before":{"t":"struct","v":{"capture_designs":{"t":"bool","v":false},"unk_331_333":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"capture_designs":{"t":"bool","v":false},"unk_331_333":{"t":"u32","v":0}}}},"species_flags":{"before":{"t":"struct","v":{"species_flags":{"t":"list","v":[{"t":"u32","v":0},{"t":"u32","v":0},{"t":"u32","v":15},{"t":"u32","v":0},{"t":"u32","v":0},{"t":"u32","v":0},{"t":"u32","v":0}]},"count":{"t":"u32","v":7}}},"after":{"t":"struct","v":{"species_flags":{"t":"list","v":[{"t":"u32","v":0},{"t":"u32","v":0},{"t":"u32","v":15},{"t":"u32","v":0},{"t":"u32","v":0},{"t":"u32","v":0},{"t":"u32","v":0}]},"count":{"t":"u32","v":7}}}},"roll":{"before":{"t":"struct","v":{"research_roll_pending":{"t":"bool","v":true},"unk_3b5_3b7":{"t":"u32","v":1},"ai_rebellion":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"research_roll_pending":{"t":"bool","v":false},"unk_3b5_3b7":{"t":"u32","v":1},"ai_rebellion":{"t":"ptr","v":"0x00000000"}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":375},"next_index":{"t":"i64","v":249}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":374},"next_index":{"t":"i64","v":250}}}}},"ours":{"ret":null,"side":{"suit":{"after":{"t":"struct","v":{"suit_tol":{"t":"f32","v":6.25},"max_overharvest":{"t":"f32","v":0.0199999996}}}},"res_mod":{"after":{"t":"struct","v":{"res_mod":{"t":"f32","v":0.899999976}}}},"abilities":{"after":{"t":"struct","v":{"reb_ai":{"t":"bool","v":false},"unk_fd":{"t":"u8","v":1},"ai_benefit":{"t":"bool","v":true},"trade_allowed":{"t":"bool","v":false},"commerce_raiding":{"t":"bool","v":false},"view_intel":{"t":"bool","v":false},"grav_synth":{"t":"bool","v":false},"advanced_sensors":{"t":"bool","v":false},"arcology":{"t":"bool","v":false},"unk_105":{"t":"u8","v":0},"unk_106":{"t":"u8","v":0},"unk_107":{"t":"u8","v":0}}}},"modifiers":{"after":{"t":"struct","v":{"pddm":{"t":"f32","v":1},"con_mod":{"t":"list","v":[{"t":"f32","v":0.899999976},{"t":"f32","v":0.899999976},{"t":"f32","v":0.899999976}]},"sav_mod":{"t":"list","v":[{"t":"f32","v":1},{"t":"f32","v":1},{"t":"f32","v":1}]},"out_mod":{"t":"f32","v":1.25},"unk_128":{"t":"u32","v":1065353216},"unk_12c":{"t":"u32","v":1065353216},"pop_mod":{"t":"f32","v":1.10000002},"terra_mod":{"t":"f32","v":1},"asteroid_mining":{"t":"bool","v":false},"unk_139_13b":{"t":"u32","v":0},"unk_13c":{"t":"u32","v":1045220557},"min_rate":{"t":"f32","v":1},"unk_144":{"t":"u32","v":0},"per_gate_traffic":{"t":"i32","v":0},"unk_14c":{"t":"u32","v":0},"cast_range":{"t":"f32","v":0},"cast_efficiency":{"t":"f32","v":0},"cast_threshold":{"t":"f32","v":0}}}},"design_masks":{"after":{"t":"struct","v":{"design_options_a":{"t":"u32","v":0},"design_options_b":{"t":"u32","v":2097216}}}},"translation":{"after":{"t":"struct","v":{"translation_known":{"t":"u32","v":4}}}},"vaccines":{"after":{"t":"struct","v":{"has_vaccine":{"t":"u32","v":0},"has_immunity":{"t":"u32","v":0},"node_track_mask":{"t":"u32","v":0}}}},"research_target":{"after":{"t":"struct","v":{"research_target":{"t":"ptr","v":"0x00000000"},"research_target_set":{"t":"bool","v":false}}}},"node_bore_ptr":{"after":{"t":"struct","v":{"node_bore_block":{"t":"ptr","v":"0x00000000"}}}},"inc_mod":{"after":{"t":"struct","v":{"inc_mod":{"t":"f32","v":1}}}},"capture_designs":{"after":{"t":"struct","v":{"capture_designs":{"t":"bool","v":false},"unk_331_333":{"t":"u32","v":0}}}},"species_flags":{"after":{"t":"struct","v":{"species_flags":{"t":"list","v":[{"t":"u32","v":0},{"t":"u32","v":0},{"t":"u32","v":15},{"t":"u32","v":0},{"t":"u32","v":0},{"t":"u32","v":0},{"t":"u32","v":0}]},"count":{"t":"u32","v":7}}}},"roll":{"after":{"t":"struct","v":{"research_roll_pending":{"t":"bool","v":false},"unk_3b5_3b7":{"t":"u32","v":1},"ai_rebellion":{"t":"ptr","v":"0x00000000"}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":374},"next_index":{"t":"i64","v":250}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["player"],"undeclared":[{"region":"player","off":632,"len":1},{"region":"player","off":688,"len":1}],"n":2}} +{"ts":430067004,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":148,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x0e945738","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":912,"n":"fleet_id"},{"t":"i32","v":7,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[1].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[2].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[3].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[4].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[5].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[6].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[7].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[8].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[9].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.40894508},"y":{"t":"f32","v":7.52262592},"z":{"t":"f32","v":-9.03135204}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[1].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[2].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[3].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[4].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[5].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[6].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[7].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[8].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ship[9].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}} +{"ts":430067293,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":149,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x0e945860","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1120,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":2.19659615},"y":{"t":"f32","v":11.004077},"z":{"t":"f32","v":7.4985137}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}} +{"ts":430067512,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":150,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x209113e8","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1152,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":11.3386269},"y":{"t":"f32","v":8.18081856},"z":{"t":"f32","v":7.54310226}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}} +{"ts":430067703,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":151,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x209119b0","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1264,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-3.40392876},"y":{"t":"f32","v":1.92151022},"z":{"t":"f32","v":-9.20736313}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}} +{"ts":430067886,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":152,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x20911ad8","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1296,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.12898874},"y":{"t":"f32","v":-5.12017059},"z":{"t":"f32","v":-2.72959328}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}} +{"ts":430068056,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":153,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x20911510","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":1360,"n":"fleet_id"},{"t":"i32","v":4,"n":"owner"},{"t":"i32","v":-1,"n":"wpt_type"},{"t":"i32","v":0,"n":"wpt_count"},{"t":"i32","v":-1,"n":"dest_kind"},{"t":"f32","v":0,"n":"speed"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.43571329},"y":{"t":"f32","v":-16.0226936},"z":{"t":"f32","v":12.3431473}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[],"n":0}} +{"ts":430068255,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":154,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x357c7648","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":34,"n":"fleet_id"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":1,"n":"wpt_type"},{"t":"i32","v":1,"n":"wpt_count"},{"t":"i32","v":0,"n":"dest_kind"},{"t":"f32","v":2,"n":"speed"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-6.95160389},"y":{"t":"f32","v":9.28626823},"z":{"t":"f32","v":-0.42792356}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.06618261},"y":{"t":"f32","v":9.36798859},"z":{"t":"f32","v":0.234276652}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-7.83329344},"y":{"t":"f32","v":8.47716427},"z":{"t":"f32","v":0.058498323}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.95160389},"y":{"t":"f32","v":9.28626823},"z":{"t":"f32","v":-0.42792356}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":12.7082443}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":10.7082443}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-5.06618261},"y":{"t":"f32","v":9.36798859},"z":{"t":"f32","v":0.234276593}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.95160389},"y":{"t":"f32","v":9.28626823},"z":{"t":"f32","v":-0.42792356}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":10.7082443}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}}},"diverged":true,"diff":[{"path":"side.pos.after.v.z","why":"exact","orig":{"t":"f32","v":0.234276652},"ours":{"t":"f32","v":0.234276593}}],"coverage":{"guards":["fleet"],"undeclared":[{"region":"fleet","off":160,"len":4},{"region":"fleet","off":220,"len":1},{"region":"fleet","off":268,"len":1}],"n":3}} +{"ts":430068465,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":155,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x357c62a0","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":50,"n":"fleet_id"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":1,"n":"wpt_type"},{"t":"i32","v":1,"n":"wpt_count"},{"t":"i32","v":0,"n":"dest_kind"},{"t":"f32","v":2,"n":"speed"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":true},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-9.09477901},"y":{"t":"f32","v":0.0167649984},"z":{"t":"f32","v":4.73826265}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-8.34966946},"y":{"t":"f32","v":-1.21961474},"z":{"t":"f32","v":5.37467194}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-10.0393867},"y":{"t":"f32","v":1.58417809},"z":{"t":"f32","v":3.93145895}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-9.09477901},"y":{"t":"f32","v":0.0167649984},"z":{"t":"f32","v":4.73826265}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":14}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":12.4223938}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}},"ours":{"ret":{"t":"bool","v":true},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-8.34966946},"y":{"t":"f32","v":-1.21961474},"z":{"t":"f32","v":5.37467194}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-9.09477901},"y":{"t":"f32","v":0.0167649984},"z":{"t":"f32","v":4.73826265}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":12.4223938}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[{"region":"fleet","off":160,"len":4},{"region":"fleet","off":204,"len":1},{"region":"fleet","off":219,"len":2},{"region":"fleet","off":224,"len":26},{"region":"fleet","off":268,"len":1}],"n":5}} +{"ts":430068666,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":156,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x357c6f58","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":66,"n":"fleet_id"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":1,"n":"wpt_type"},{"t":"i32","v":1,"n":"wpt_count"},{"t":"i32","v":0,"n":"dest_kind"},{"t":"f32","v":2,"n":"speed"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-8.0664978},"y":{"t":"f32","v":3.70398545},"z":{"t":"f32","v":2.08570695}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.13544559},"y":{"t":"f32","v":3.19647574},"z":{"t":"f32","v":1.96963489}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-9.99755001},"y":{"t":"f32","v":4.21149492},"z":{"t":"f32","v":2.20177913}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-8.0664978},"y":{"t":"f32","v":3.70398545},"z":{"t":"f32","v":2.08570695}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":14}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-6.13544607},"y":{"t":"f32","v":3.19647598},"z":{"t":"f32","v":1.96963489}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-8.0664978},"y":{"t":"f32","v":3.70398545},"z":{"t":"f32","v":2.08570695}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":14}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}}},"diverged":true,"diff":[{"path":"side.pos.after.v.x","why":"exact","orig":{"t":"f32","v":-6.13544559},"ours":{"t":"f32","v":-6.13544607}},{"path":"side.pos.after.v.y","why":"exact","orig":{"t":"f32","v":3.19647574},"ours":{"t":"f32","v":3.19647598}}],"coverage":{"guards":["fleet"],"undeclared":[{"region":"fleet","off":220,"len":1},{"region":"fleet","off":268,"len":1}],"n":2}} +{"ts":430068870,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":157,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x357c7ae8","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":98,"n":"fleet_id"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":1,"n":"wpt_type"},{"t":"i32","v":1,"n":"wpt_count"},{"t":"i32","v":0,"n":"dest_kind"},{"t":"f32","v":2,"n":"speed"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-10.9996872},"y":{"t":"f32","v":3.14307928},"z":{"t":"f32","v":1.50941014}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.0707722},"y":{"t":"f32","v":1.56715405},"z":{"t":"f32","v":0.700968981}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.9996872},"y":{"t":"f32","v":3.14307928},"z":{"t":"f32","v":1.50941014}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":18}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":16}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.0707722},"y":{"t":"f32","v":1.56715417},"z":{"t":"f32","v":0.700968921}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.9996872},"y":{"t":"f32","v":3.14307928},"z":{"t":"f32","v":1.50941014}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":16}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}}},"diverged":true,"diff":[{"path":"side.pos.after.v.y","why":"exact","orig":{"t":"f32","v":1.56715405},"ours":{"t":"f32","v":1.56715417}},{"path":"side.pos.after.v.z","why":"exact","orig":{"t":"f32","v":0.700968981},"ours":{"t":"f32","v":0.700968921}}],"coverage":{"guards":["fleet"],"undeclared":[{"region":"fleet","off":220,"len":1},{"region":"fleet","off":268,"len":1}],"n":2}} +{"ts":430069045,"hook":"Game::StrategyServer::MoveFleet","mode":"compare","call_id":158,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9d4720","n":"server"},{"t":"ptr","v":"0x357c7080","n":"fleet"},{"t":"f32","v":1,"n":"dt"},{"t":"i32","v":114,"n":"fleet_id"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":1,"n":"wpt_type"},{"t":"i32","v":1,"n":"wpt_count"},{"t":"i32","v":0,"n":"dest_kind"},{"t":"f32","v":2,"n":"speed"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":{"t":"bool","v":false},"side":{"pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.9544621},"y":{"t":"f32","v":5.13790941},"z":{"t":"f32","v":0.62210083}}}},"prev_pos":{"before":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}},"after":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}}},"ship[0].range":{"before":{"t":"struct","v":{"v":{"t":"f32","v":20}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":18}}}},"rng":{"before":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}},"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}},"ours":{"ret":{"t":"bool","v":false},"side":{"pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-10.9544621},"y":{"t":"f32","v":5.13790941},"z":{"t":"f32","v":0.62210083}}}},"prev_pos":{"after":{"t":"struct","v":{"x":{"t":"f32","v":-11.9286022},"y":{"t":"f32","v":4.71900415},"z":{"t":"f32","v":2.31785131}}}},"ship[0].range":{"after":{"t":"struct","v":{"v":{"t":"f32","v":18}}}},"rng":{"after":{"t":"struct","v":{"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["fleet"],"undeclared":[{"region":"fleet","off":160,"len":4},{"region":"fleet","off":220,"len":1},{"region":"fleet","off":268,"len":1}],"n":3}} +{"ts":430069492,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":159,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9c0ad8","n":"system"},{"t":"i32","v":0,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":0},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":5.65746593},"res":{"t":"i32","v":4526},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":0},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":5.65746593},"res":{"t":"i32","v":4526},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":0},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":5.65746593},"res":{"t":"i32","v":4526},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":430070119,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":160,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9c0db8","n":"system"},{"t":"i32","v":1,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":1},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.65671718},"res":{"t":"i32","v":4295},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":1},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.65671718},"res":{"t":"i32","v":4295},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":1},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.65671718},"res":{"t":"i32","v":4295},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":430070471,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":161,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9c1098","n":"system"},{"t":"i32","v":2,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":2},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":4.85715199},"res":{"t":"i32","v":6454},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":2},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":4.85715199},"res":{"t":"i32","v":6454},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":2},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":4.85715199},"res":{"t":"i32","v":6454},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":430070828,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":162,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ac258","n":"system"},{"t":"i32","v":3,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":3},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":17.2924309},"res":{"t":"i32","v":3323},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":3},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":17.2924309},"res":{"t":"i32","v":3323},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":3},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":17.2924309},"res":{"t":"i32","v":3323},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":430071246,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":163,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ac538","n":"system"},{"t":"i32","v":4,"n":"system_index"},{"t":"i32","v":0,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":5}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":6}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":4},"owner":{"t":"i32","v":0},"species":{"t":"i32","v":0},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":5},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":11.1062069},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":4},"owner":{"t":"i32","v":0},"species":{"t":"i32","v":0},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":5},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":11.1062069},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":6}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":4},"owner":{"t":"i32","v":0},"species":{"t":"i32","v":0},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":5},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":11.1062069},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":430071670,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":164,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ac818","n":"system"},{"t":"i32","v":5,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":5},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":8.92636013},"res":{"t":"i32","v":6439},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":5},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":8.92636013},"res":{"t":"i32","v":6439},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":5},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":8.92636013},"res":{"t":"i32","v":6439},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":430072047,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":165,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9acaf8","n":"system"},{"t":"i32","v":6,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":6},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":0.869569659},"res":{"t":"i32","v":3455},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":6},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":0.869569659},"res":{"t":"i32","v":3455},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":6},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":0.869569659},"res":{"t":"i32","v":3455},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":430072397,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":166,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9acdd8","n":"system"},{"t":"i32","v":7,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":7},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":8},"suit":{"t":"f32","v":2.1625092},"res":{"t":"i32","v":5343},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":7},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":8},"suit":{"t":"f32","v":2.1625092},"res":{"t":"i32","v":5343},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":7},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":8},"suit":{"t":"f32","v":2.1625092},"res":{"t":"i32","v":5343},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":430072790,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":167,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ad0b8","n":"system"},{"t":"i32","v":8,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":8},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":12.5012217},"res":{"t":"i32","v":7719},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":8},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":12.5012217},"res":{"t":"i32","v":7719},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":8},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":12.5012217},"res":{"t":"i32","v":7719},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":430073261,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":168,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ad398","n":"system"},{"t":"i32","v":9,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":9},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":5.32649183},"res":{"t":"i32","v":5752},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":9},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":5.32649183},"res":{"t":"i32","v":5752},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":9},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":5.32649183},"res":{"t":"i32","v":5752},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":430073762,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":169,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x0e9ad678","n":"system"},{"t":"i32","v":10,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":10},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":14.9623423},"res":{"t":"i32","v":7881},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":10},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":14.9623423},"res":{"t":"i32","v":7881},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":10},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":14.9623423},"res":{"t":"i32","v":7881},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":430074217,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":170,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20906c70","n":"system"},{"t":"i32","v":11,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":11},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":13.7235212},"res":{"t":"i32","v":4395},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":11},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":13.7235212},"res":{"t":"i32","v":4395},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":11},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":13.7235212},"res":{"t":"i32","v":4395},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":430074651,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":171,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20906f50","n":"system"},{"t":"i32","v":12,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":12},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":16.9405556},"res":{"t":"i32","v":3973},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":12},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":16.9405556},"res":{"t":"i32","v":3973},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":12},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":16.9405556},"res":{"t":"i32","v":3973},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":430075089,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":172,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907230","n":"system"},{"t":"i32","v":13,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":13},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":0.416553319},"res":{"t":"i32","v":5889},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":13},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":0.416553319},"res":{"t":"i32","v":5889},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":13},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":0.416553319},"res":{"t":"i32","v":5889},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":430075523,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":173,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907510","n":"system"},{"t":"i32","v":14,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":2}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":2}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":14},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":16},"rcex_mask":{"t":"u32","v":2},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.5084848},"res":{"t":"i32","v":4976},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":14},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":16},"rcex_mask":{"t":"u32","v":2},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.5084848},"res":{"t":"i32","v":4976},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":2}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":14},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":16},"rcex_mask":{"t":"u32","v":2},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.5084848},"res":{"t":"i32","v":4976},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":430076022,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":174,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x209077f0","n":"system"},{"t":"i32","v":15,"n":"system_index"},{"t":"i32","v":1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":5}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":6}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":15},"owner":{"t":"i32","v":1},"species":{"t":"i32","v":2},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":5},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":15},"owner":{"t":"i32","v":1},"species":{"t":"i32","v":2},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":5},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":1000000000}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":6}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":15},"owner":{"t":"i32","v":1},"species":{"t":"i32","v":2},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":true},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":1},"pop":{"t":"i32","v":1000000000},"pbon":{"t":"i32","v":1000000000},"ntdev":{"t":"i32","v":5},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":1000000000},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":10},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":5000},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":430076531,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":175,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907ad0","n":"system"},{"t":"i32","v":16,"n":"system_index"},{"t":"i32","v":7,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":1}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":5}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":6}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":128}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":128}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":16},"owner":{"t":"i32","v":7},"species":{"t":"i32","v":4},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":true},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":120000000},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":5},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":128},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":3394},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":16},"owner":{"t":"i32","v":7},"species":{"t":"i32","v":4},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":true},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":120000000},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":5},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":128},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":3394},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":1}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":6}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":128}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":16},"owner":{"t":"i32","v":7},"species":{"t":"i32","v":4},"owned":{"t":"bool","v":true},"independent":{"t":"bool","v":true},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":true},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":1},"infra":{"t":"f32","v":1},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":120000000},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":5},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":128},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":true},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":true}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":9.43959045},"res":{"t":"i32","v":3394},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":0}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":430076960,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":176,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20909518","n":"system"},{"t":"i32","v":17,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":17},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":9.509552},"res":{"t":"i32","v":4085},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":17},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":9.509552},"res":{"t":"i32","v":4085},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":17},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":6},"suit":{"t":"f32","v":9.509552},"res":{"t":"i32","v":4085},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":430077379,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":177,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908978","n":"system"},{"t":"i32","v":18,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":18},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":14.0226393},"res":{"t":"i32","v":5476},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":18},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":14.0226393},"res":{"t":"i32","v":5476},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":18},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":14.0226393},"res":{"t":"i32","v":5476},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":430077811,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":178,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20909800","n":"system"},{"t":"i32","v":19,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":19},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.6182585},"res":{"t":"i32","v":3690},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":19},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.6182585},"res":{"t":"i32","v":3690},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":19},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":15.6182585},"res":{"t":"i32","v":3690},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":430078228,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":179,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20907dd8","n":"system"},{"t":"i32","v":20,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":20},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":11.8586617},"res":{"t":"i32","v":7258},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":20},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":11.8586617},"res":{"t":"i32","v":7258},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":20},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":2},"suit":{"t":"f32","v":11.8586617},"res":{"t":"i32","v":7258},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":430078656,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":180,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x209080c0","n":"system"},{"t":"i32","v":21,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":21},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":1},"suit":{"t":"f32","v":0.868489087},"res":{"t":"i32","v":5445},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":21},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":1},"suit":{"t":"f32","v":0.868489087},"res":{"t":"i32","v":5445},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":21},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":1},"suit":{"t":"f32","v":0.868489087},"res":{"t":"i32","v":5445},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":430079072,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":181,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x209083a8","n":"system"},{"t":"i32","v":22,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":22},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":19.3835239},"res":{"t":"i32","v":7259},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":22},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":19.3835239},"res":{"t":"i32","v":7259},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":22},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":4},"suit":{"t":"f32","v":19.3835239},"res":{"t":"i32","v":7259},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":430079497,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":182,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20909230","n":"system"},{"t":"i32","v":23,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":23},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":19.8140602},"res":{"t":"i32","v":5610},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":23},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":19.8140602},"res":{"t":"i32","v":5610},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":23},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":3},"suit":{"t":"f32","v":19.8140602},"res":{"t":"i32","v":5610},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":430079920,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":183,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908690","n":"system"},{"t":"i32","v":24,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":24},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":12.9136686},"res":{"t":"i32","v":6368},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":24},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":12.9136686},"res":{"t":"i32","v":6368},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":24},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":12.9136686},"res":{"t":"i32","v":6368},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":430080361,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":184,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908c60","n":"system"},{"t":"i32","v":25,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":25},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.58767724},"res":{"t":"i32","v":5058},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":25},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.58767724},"res":{"t":"i32","v":5058},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":25},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":5},"suit":{"t":"f32","v":1.58767724},"res":{"t":"i32","v":5058},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":430080896,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":185,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x20908f48","n":"system"},{"t":"i32","v":26,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":26},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":5.11237812},"res":{"t":"i32","v":6252},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":26},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":5.11237812},"res":{"t":"i32","v":6252},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":26},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":0},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":5.11237812},"res":{"t":"i32","v":6252},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}} +{"ts":430081299,"hook":"Game::ServerSystem::ProcessTurn","mode":"compare","call_id":186,"thread":7656,"depth":0,"args":[{"t":"ptr","v":"0x2090e3b0","n":"system"},{"t":"i32","v":27,"n":"system_index"},{"t":"i32","v":-1,"n":"owner"},{"t":"i32","v":356,"n":"rng_left_in"},{"t":"u32","v":4735,"n":"fpu_cw"}],"ret":null,"side":{"infra":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"before":{"t":"struct","v":{"v":{"t":"f32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"before":{"t":"struct","v":{"v":{"t":"i32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"before":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}},"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"before":{"t":"struct","v":{"v":{"t":"u64","v":0}}},"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"before":{"t":"struct","v":{"v":{"t":"u32","v":16}}},"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"before":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"before":{"t":"struct","v":{"system":{"t":"i32","v":27},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":7.83555746},"res":{"t":"i32","v":5210},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}},"after":{"t":"struct","v":{"system":{"t":"i32","v":27},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":7.83555746},"res":{"t":"i32","v":5210},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}},"ours":{"ret":null,"side":{"infra":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"ibon":{"after":{"t":"struct","v":{"v":{"t":"f32","v":0}}}},"pbon":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"ntdev":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"tres":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"haltv":{"after":{"t":"struct","v":{"h0":{"t":"bool","v":false},"h1":{"t":"bool","v":false},"h2":{"t":"bool","v":false}}}},"bats2":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"bats_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":0}}}},"rcex":{"after":{"t":"struct","v":{"v":{"t":"u64","v":0}}}},"rcex_mask":{"after":{"t":"struct","v":{"v":{"t":"u32","v":16}}}},"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":356},"next_index":{"t":"i64","v":268}}}},"inputs":{"after":{"t":"struct","v":{"system":{"t":"i32","v":27},"owner":{"t":"i32","v":-1},"species":{"t":"i32","v":-1},"owned":{"t":"bool","v":false},"independent":{"t":"bool","v":false},"home":{"t":"bool","v":false},"stable":{"t":"bool","v":false},"players":{"t":"i32","v":8},"turn":{"t":"i32","v":7},"turn_acquired":{"t":"i32","v":0},"infra":{"t":"f32","v":0},"ibon":{"t":"f32","v":0},"pop":{"t":"i32","v":0},"pbon":{"t":"i32","v":0},"ntdev":{"t":"i32","v":0},"tres":{"t":"i32","v":0},"haltv":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"bats2":{"t":"u64","v":0},"bats_mask":{"t":"u32","v":0},"rcex":{"t":"u64","v":0},"rcex_mask":{"t":"u32","v":16},"adt":{"t":"list","v":[{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0},{"t":"i32","v":0}]},"civilians":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"temperance":{"t":"list","v":[{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false},{"t":"bool","v":false}]},"phase2":{"t":"i32","v":10},"phase3":{"t":"i32","v":15},"capacity":{"t":"i64","v":0},"bonus_eligible":{"t":"bool","v":true},"size":{"t":"i32","v":7},"suit":{"t":"f32","v":7.83555746},"res":{"t":"i32","v":5210},"rbfl":{"t":"i32","v":0},"rng_left_in":{"t":"i32","v":356},"fpu_cw":{"t":"u32","v":4735},"queue_depth":{"t":"i32","v":-1}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["system"],"undeclared":[],"n":0}}